@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Nunito+Sans:wght@300;400;700;800&family=Roboto:wght@300;400;700&display=swap');

/* Design Tokens */
:root {
  --primary-color: #ff0000;
  --secondary-color: #0000ff;
  --dark-bg: #111111;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-muted: #666666;
  --border-color: #dddddd;
  --max-width: 680px;
  
  --font-primary: 'Nunito Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Wrapper to simulate the clean single column lander view */
.lander-container {
  width: 100%;
  max-width: var(--max-width);
  background: var(--white);
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  min-height: 100vh;
  position: relative;
}

/* Banners / Headers */
.top-alert {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid #b71c1c;
}

.top-header {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.top-header h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
}

/* Sections */
.section {
  padding: 25px 20px;
  text-align: center;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section-accent {
  background-color: #ffebee;
}

/* Media / Images & Gifs */
.media-container {
  margin: 15px 0;
  text-align: center;
}

.media-container img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

/* Text styles */
.highlight-red {
  color: var(--primary-color) !important;
}

.highlight-blue {
  color: var(--secondary-color) !important;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.italic {
  font-style: italic;
}

/* Buttons */
.btn-cta {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  margin: 20px 0;
  width: 100%;
  max-width: 450px;
  text-align: center;
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  background-color: #d32f2f;
}

/* Icon Lists */
.icon-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
}

.icon-list-icon {
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.icon-list-text {
  color: var(--text-dark);
}

/* Testimonial Grids */
.testimony-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 20px 0;
}

@media(min-width: 480px) {
  .testimony-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .testimony-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.testimony-card img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border-color);
  border-radius: 4px;
}

/* Pricing Grid */
.pricing-container {
  margin: 25px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background: var(--white);
  border: 2px solid #eaeaea;
  border-radius: 8px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pricing-card.best-seller {
  border-color: var(--primary-color);
  position: relative;
}

.pricing-card.best-seller::before {
  content: 'BEST SELLER';
  position: absolute;
  top: -12px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
}

.pricing-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 5px;
}

.pricing-card h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.pricing-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.pricing-price {
  margin-bottom: 15px;
}

.pricing-price del {
  color: var(--text-muted);
  font-size: 15px;
  display: block;
}

.pricing-price span {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 800;
}

.pricing-card .btn-order {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.3s;
}

.pricing-card .btn-order:hover {
  background-color: #d32f2f;
}

/* CRM Form Area */
.form-section {
  background-color: #fafafa;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.form-container iframe {
  width: 100%;
  border: 0;
  min-height: 560px;
}

/* Contact Us Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 25px 0;
}

@media(min-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: #aaa;
}

.contact-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
}

.contact-card.phone .contact-icon svg {
  fill: #1976d2;
}

.contact-card.whatsapp .contact-icon svg {
  fill: #25d366;
}

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

.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer & Disclaimers */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
}

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

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(229, 57, 53, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(229, 57, 53, 0.2);
  }
}

/* Welcome Page Specific Styles */
.welcome-body {
  background-color: rgb(147, 147, 147);
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 10px;
  min-height: 100vh;
}

.welcome-container {
  width: 100%;
  max-width: 772px;
  background-color: #ffffff;
  padding: 25px;
  border-top: 3px solid rgb(142, 197, 47);
  box-shadow: 0 0 8px 3px #848484;
  border-radius: 4px;
}

.welcome-title {
  font-family: 'courier new', courier, monospace;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.welcome-banner {
  background-color: rgb(0, 0, 255);
  color: rgb(255, 255, 255);
  font-family: 'trebuchet ms', geneva, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.welcome-media {
  text-align: center;
  margin: 20px 0;
}

.welcome-media img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Welcome Page Buttons */
.btn-welcome-red {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: rgb(243, 30, 27);
  border: 2px solid rgb(215, 2, 0);
  border-radius: 30px;
  text-shadow: rgb(141, 118, 118) 1px 1px 0px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 18px 25px;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.2s;
  animation: pulse-button 1.5s infinite alternate;
}

.btn-welcome-red:hover {
  background-color: rgb(215, 2, 0);
  transform: scale(1.02);
}

.btn-welcome-brown {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: rgb(118, 60, 59);
  border: 2px solid rgb(90, 32, 31);
  border-radius: 30px;
  text-shadow: rgb(74, 74, 74) 1px 1px 0px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 26px;
  text-decoration: underline;
  padding: 18px 25px;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.2s;
  animation: pulse-button 1.5s infinite alternate;
}

.btn-welcome-brown:hover {
  background-color: rgb(90, 32, 31);
  transform: scale(1.02);
}

.welcome-cursive {
  font-family: 'Georgia', cursive, serif;
  font-size: 32px;
  font-weight: 700;
  color: rgb(255, 0, 0);
  text-align: center;
  margin: 25px 0;
}

.welcome-specialists {
  color: rgb(0, 0, 255);
  font-family: 'times new roman', times, serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin: 25px 0;
}

.welcome-disclaimer {
  font-family: 'times new roman', times, serif;
  font-size: 15px;
  color: #555555;
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

@keyframes pulse-button {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 30, 27, 0.4);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(243, 30, 27, 0);
  }
}

