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

:root {
  --primary-color: #58C014; /* Vibrant Green from logo */
  --primary-light: #E7F7DB; /* Light green tint */
  --secondary-color: #4A4D4E; /* Dark Gray from logo */
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-color: #FAFCFF;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.section,
.hero {
  scroll-margin-top: 60px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
.text-center h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}
h3 { font-size: 2rem; margin-bottom: 1rem; }
p { font-size: 1.125rem; color: var(--text-light); margin-bottom: 1.5rem; }

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }

.section {
  padding: 4rem 0 2rem;
}

.section.contact {
  padding: 4rem 0 2rem;
}

.bg-pattern {
  background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #74db28);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(88, 192, 20, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 192, 20, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  background: #ffffff;
  margin-bottom: 1rem;
}

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

.contact-form button {
  align-self: start;
  margin-top: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.contact-top p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-form-panel,
.contact-map-panel,
.contact-info-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  border-radius: 26px;
  padding: 2rem;
}

.contact-box {
  display: flex;
  flex-direction: column;
}

.contact-map-panel .contact-map {
  min-height: 340px;
}

.section-label {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 1.25rem;
}

.contact-card-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-card-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-card-item a {
  color: inherit;
  text-decoration: none;
}

.contact-map {
  margin-top: 1.8rem;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form-panel .contact-map {
  margin-top: 0;
  margin-bottom: 1.5rem;
  height: 320px;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-map-panel .contact-map,
  .contact-form-panel .contact-map {
    min-height: 240px;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #74db28, var(--primary-color));
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition-fast);
}

.menu-btn:hover {
  color: var(--primary-color);
}

.logo img {
  height: 50px;
  transition: var(--transition-fast);
}

.navbar.scrolled .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--secondary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: var(--transition-fast);
}

.nav-links li a:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.nav-links li a.btn-contact {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 0 20px 0 20px;
  box-shadow: 0 4px 10px rgba(88, 192, 20, 0.3);
}

.nav-links li a.btn-contact:hover {
  background-color: #4da611;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(88, 192, 20, 0.5);
}

.btn-shop {
  background: linear-gradient(135deg, var(--primary-color), #74db28);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(88, 192, 20, 0.4);
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-shop 2s infinite;
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 192, 20, 0.6);
  color: var(--white);
}

@keyframes pulse-shop {
  0% { box-shadow: 0 0 0 0 rgba(88, 192, 20, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(88, 192, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(88, 192, 20, 0); }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f8fafc;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(4px) brightness(0.65);
  transform: scale(1.05);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: #FFFFFF;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #F5F7FA;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* About Section with Video */
.about {
  background: var(--white);
  position: relative;
}

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

.about-text h2 {
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-slow);
}

.video-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* Products Section */
.products {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--primary-light) 100%);
  position: relative;
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.product-card {
  flex: 1 1 0;
  min-width: 220px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

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

.product-card:hover::before {
  opacity: 1;
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: var(--transition-slow);
}

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

.product-card.zoomed .product-img,
.product-card:active .product-img {
  transform: scale(1.15);
}


.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-section {
  background: #f4f7fb;
}

.gallery-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  margin-top: 3rem;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); } /* -50% of the track width minus half the gap */
}

.gallery-item {
  border: none;
  padding: 0;
  display: block;
  flex: 0 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-fast);
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.5rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 1.5rem;
  z-index: 2000;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  position: absolute;
}

.lightbox-nav.prev {
  left: 1.5rem;
}

.lightbox-nav.next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 220px;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 70%;
  }

  .lightbox-nav.prev {
    left: 0.75rem;
  }

  .lightbox-nav.next {
    right: 0.75rem;
  }
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Features Gallery */
.features {
  background: var(--bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--white);
  padding: 1.5rem 1.2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  background-color: var(--primary-light);
  background-image: radial-gradient(rgba(88, 192, 20, 0.2) 2px, transparent 2px);
  background-size: 30px 30px;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.cta::after {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: inline-block;
  max-width: 800px;
}

.cta h2 {
  color: var(--text-dark);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cta h2::after {
  display: none;
}

.shop-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  transition: transform 0.3s;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.shop-btn:hover {
  transform: scale(1.05);
}

.shop-btn img {
  max-height: 100%;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Footer */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--text-light);
  font-size: 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  color: var(--text-light);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .nav-links li a {
    font-size: 1.4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 3rem 0 1.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
  .cta-content {
    padding: 2rem 1.5rem;
  }
  .shop-btn {
    width: 130px;
    height: 45px;
    padding: 8px;
  }
  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }
  .faq-answer p {
    padding: 0 1rem 1.25rem;
  }
}

/* Floating Buttons */
.floating-wa {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.floating-wa:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  color: white;
}

/* ==========================================================================
   Review Page Styles
   ========================================================================== */

.review-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
}

.review-card-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-lg);
  border-radius: 28px;
  padding: 3rem;
  transition: var(--transition-slow);
  position: relative;
}

.review-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), #74db28, var(--primary-color));
  border-radius: 28px 28px 0 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.review-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  padding-bottom: 0;
}

.review-header h1::after {
  display: none;
}

.review-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

/* Star Rating Selector */
.rating-container {
  margin-bottom: 2.5rem;
  background: rgba(88, 192, 20, 0.04);
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px dashed rgba(88, 192, 20, 0.2);
}

.rating-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.star-rating {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #d1d5db; /* Light grey for empty stars */
  cursor: pointer;
  padding: 0 4px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.star-btn:hover {
  transform: scale(1.25);
  color: #ffb703; /* Gold on hover */
}

.star-btn:hover ~ .star-btn {
  color: #d1d5db !important; /* ensure hover highlights only stars up to hovered one */
}

/* Ensure active/selected stars look filled/gold */
.star-btn.active {
  color: #ffb703;
  text-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
}

.rating-text {
  font-size: 1.05rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

/* Form Styles */
.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  padding: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: #ffffff;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  line-height: 1.6;
}

.textarea-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(88, 192, 20, 0.12);
}

.char-counter {
  position: absolute;
  bottom: -25px;
  right: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Chips/Suggestions */
.suggestions-container {
  margin-bottom: 2.8rem;
  text-align: left;
}

.suggestions-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip-btn {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  font-family: inherit;
}

.chip-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(88, 192, 20, 0.15);
}

.btn-post-google {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 1rem;
  background: linear-gradient(135deg, #4285f4, #357ae8); /* Google Blue */
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.35);
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-post-google:hover {
  background: linear-gradient(135deg, #357ae8, #2a6dd4);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
  transform: translateY(-3px);
  color: var(--white);
}

/* Modal Popup Styles */
.review-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  max-width: 540px;
  width: 100%;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.review-modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(0,0,0,0.05);
  color: var(--text-dark);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.0rem;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: scaleBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleBounce {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.modal-header p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-intro {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-color);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.03);
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.step-text strong {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.step-text span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

.review-preview-box {
  background: rgba(0,0,0,0.02);
  border-left: 3px solid var(--primary-color);
  padding: 0.8rem 1rem;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.preview-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

#copiedTextPreview {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}

/* Responsiveness for Review Page */
@media (max-width: 768px) {
  .review-card-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .review-header h1 {
    font-size: 2rem;
  }
  
  .review-header p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  
  .rating-container {
    padding: 1.2rem;
    margin-bottom: 1.8rem;
  }
  
  .star-btn {
    font-size: 2.2rem;
  }
  
  .chip-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .modal-content {
    padding: 2rem 1.25rem;
  }
}

/* Contact page Review Us Now button */
.btn-review-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--primary-color);
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(88, 192, 20, 0.25);
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-review-now:hover {
  background: #4da611;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(88, 192, 20, 0.4);
}


