* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #f5f5f5;
  overflow-y: scroll !important;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px;
  background: transparent;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
  min-width: 1100px;
  background: #303a427d;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  flex: 1;
}
ul.nav-links {
  margin-bottom: 0 !important;
}
.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.nav-logo-img {
  height: 70px;
  padding: 0 30px;
  width: auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  transform: translateY(-8px);
}

.nav-logo-img img {
  padding: 0 30px;
}

.navbar.scrolled .nav-logo-img {
  padding: 0 40px;
  transform: translateY(-12px);
  position: fixed;
}

.navbar.scrolled img.nav-logo-img {
  height: 110px;
  width: auto;
  margin-bottom: -20px;
}

.nav-links a {
  color: #f4cd82;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #fff !important;
}

.nav-links a.active {
  color: #fff372;
  font-weight: 800;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.btn-shop {
  background: linear-gradient(45deg, #c5a059, #d4b675);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-auth {
  color: #f4cd82;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.btn-auth:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 40px);
  background: url("../image/cannabis-bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 20px;
  border-radius: 20px;
  background-origin: border-box;
  background-clip: content-box, content-box, border-box;
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 1), 0 0 40px rgb(212, 144, 55),
    0 0 80px rgba(212, 175, 55, 1);
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.logo-container {
  margin-bottom: 40px;
}

.main-logo {
  width: 400px;
  height: auto;
  max-width: 90%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.cannabis-text {
  color: #c5a059;
}

.store-text {
  color: #fff;
}

.hero-tagline {
  font-size: 1.1rem;
  color: #c5a059;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.parallax-note {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.9rem;
}

/* Gold Border with Rounded Inner Edges */
.gold-border-frame {
  position: relative;
  border: 3px solid #d4af37;
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.gold-border-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid #d4af37;
  border-radius: 15px;
  pointer-events: none;
}

.gold-border-frame::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 10px;
  pointer-events: none;
}

/* Decorative Corner Elements */
.corner-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #d4af37;
}

.corner-decoration.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-radius: 20px 0 0 0;
}

.corner-decoration.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 20px 0 0;
}

.corner-decoration.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 20px;
}

.corner-decoration.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 20px 0;
}

/* Alternative: Simple rounded border with inner glow */
.simple-gold-border {
  border: 4px solid #d4af37;
  border-radius: 25px;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(212, 175, 55, 0.4);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
}

/* Intro Section */
.intro {
  position: relative;
  padding: 80px 0;
  color: #333;
  overflow: hidden;
  background: url("../image/pattern-bg.jpg") repeat center center;
  box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.25),
    inset 0 -15px 30px rgba(0, 0, 0, 0.25);
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.intro-content {
  flex: 1;
}

.intro-title {
  font-size: 2.5rem;
  color: #c5a059;
  margin-bottom: 30px;
  position: relative;
}

.intro-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c5a059;
  margin-top: 15px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-image {
  flex: 1;
  max-width: 500px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #c5a059;
  border-radius: 20px;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-title::after {
    margin: 15px auto 0;
  }

  .intro-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/* Statistics Section */
.stats-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("../image/cannabis-bg-jar.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.stats-content {
  position: relative;
}

.stats-header {
  margin-bottom: 60px;
}

.stats-tagline {
  color: #c5a059;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.stats-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

/* Left Stats Card */
.stat-card {
  background: rgb(255 255 255 / 9%);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.customers-card {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
}

.stat-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Roboto Condensed", sans-serif;
}

.stat-number.large {
  font-size: 4rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.main-card {
  text-align: center;
  padding: 20px 30px;
}

/* Right Stats Info */
.stats-info {
  padding: 20px 0;
}

.stats-info-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.stats-info-text {
  margin-bottom: 30px;
  opacity: 0.8;
}

.stats-small {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.stat-small {
  text-align: center;
}

.stat-small .stat-number {
  font-size: 2rem;
  display: block;
  margin-bottom: 5px;
}

.stat-small .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.2;
}

.stats-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.stats-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Testimonial */
.testimonial {
  padding-top: 80px;
  max-width: 600px;
  text-align: left;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fff;
}

.testimonial cite {
  font-size: 1rem;
  opacity: 0.8;
  font-style: normal;
}

.stats-note {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stats-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 80px 0;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-small {
    justify-content: center;
  }

  .stat-number.large {
    font-size: 3rem;
  }

  .main-card {
    padding: 40px 20px;
  }

  .testimonial {
    text-align: center;
  }

  .stats-note {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
  }
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: countUp 0.8s ease-out;
}

/* Featured Products Section */
.products-section {
  margin: 20px;
  border-radius: 20px;
  background-image: url("../image/pattern-bg-v2.jpg");
  background-origin: border-box;
  background-clip: content-box, content-box, border-box;
  background-size: cover, no-repeat, cover;
  box-shadow: inset 0 0 0 2px rgb(197 160 89), 0 0 180px rgb(197 160 89),
    0 0 180px rgb(197 160 89), inset 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8vw;
}

.products-content {
  background: transparent;
  padding: 0;
}

.products-header {
  margin-bottom: 40px;
}

.products-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Spotlight Product */
.spotlight-product {
  text-align: center;
}

.spotlight-product .product-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.spotlight-title {
  color: #e74c3c;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Regular Products Grid */
.regular-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  text-align: center;
}

.product-card .product-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-title {
  color: #313131;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Placeholder styling */
.placeholder {
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5, #e0e0e0);
  background-size: 200% 200%;
  animation: placeholderShimmer 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.placeholder:hover {
  transform: scale(1.02);
}

@keyframes placeholderShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-section {
    padding: 60px 40px;
  }

  .products-grid {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .regular-products {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-section {
    margin: 10px;
    padding: 60px 30px;
    border-width: 6px;
  }

  .regular-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .spotlight-title {
    font-size: 1rem;
  }

  .product-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .products-section {
    margin: 5px;
    padding: 40px 20px;
    border-width: 4px;
    border-radius: 15px;
  }

  .regular-products {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../image/cannabis-bg-purple.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.newsletter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - CTA */
.newsletter-cta {
  max-width: 500px;
}

.newsletter-title {
  color: #e74c3c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto Condensed", sans-serif;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Right Side - Form Placeholder */
.newsletter-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-form-placeholder {
  background: rgba(180, 180, 180, 0.9);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-form-placeholder p {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.newsletter-note {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .newsletter-content {
    gap: 60px;
  }

  .newsletter-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .newsletter-cta {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 80px 15px;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
  }

  .newsletter-form-placeholder {
    padding: 60px 30px;
  }

  .newsletter-form-placeholder p {
    font-size: 1.1rem;
  }

  .newsletter-note {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    padding: 60px 10px;
  }

  .newsletter-title {
    font-size: 1.8rem;
  }

  .newsletter-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .newsletter-form-placeholder {
    padding: 40px 20px;
  }

  .newsletter-form-placeholder p {
    font-size: 1rem;
  }
}

/* Latest News Section */
.news-section {
  margin: 20px;
  border-radius: 20px;
  background-image: url(../image/pattern-bg-v2.jpg);
  background-origin: border-box;
  background-clip: content-box, content-box, border-box;
  box-shadow: inset 0 0 0 0 rgb(197 160 89), 0 0 180px rgb(197, 157, 82),
    0 0 180px rgb(230, 182, 94), inset 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-content {
  background: transparent;
  padding: 60px 0;
}

.news-header {
  margin-bottom: 50px;
}

.news-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.news-card {
  background: transparent;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-title {
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.news-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.news-note {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .news-section {
    padding: 60px 40px;
  }

  .news-grid {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .news-section {
    margin: 10px;
    padding: 60px 30px;
    border-width: 6px;
  }

  .news-grid {
    gap: 20px;
  }

  .news-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
  }

  .news-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .news-section {
    margin: 5px;
    padding: 40px 20px;
    border-width: 4px;
    border-radius: 15px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 25px;
  }

  .news-header {
    margin-bottom: 40px;
  }

  .news-title {
    font-size: 0.95rem;
  }

  .news-excerpt {
    font-size: 0.85rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(rgba(30, 60, 80, 0.9), rgba(20, 50, 70, 0.9)),
    radial-gradient(
      circle at 20% 30%,
      rgba(40, 80, 100, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(40, 80, 100, 0.3) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a3a4a 0%, #2d5a6a 50%, #1a3a4a 100%);
  background-size: cover, 600px 600px, 600px 600px, cover;
  background-position: center, 0% 0%, 100% 100%, center;
  background-image: url("../image/testimonials-bg.jpg");
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(255, 255, 255, 0.03) 100px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(255, 255, 255, 0.03) 100px
    );
  pointer-events: none;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 50px;
}

.testimonials-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(45, 65, 75, 0.95);
  border-radius: 15px;
  padding: 30px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stars {
  margin-bottom: 20px;
}

.star {
  color: #f1c40f;
  font-size: 1.2rem;
  margin-right: 2px;
}

.testimonial-text {
  color: #e8e8e8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.customer-info {
  flex: 1;
}

.customer-name {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.customer-title {
  color: #b8b8b8;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-grid {
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonials-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .customer-name {
    font-size: 0.9rem;
  }

  .customer-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .star {
    font-size: 1.1rem;
  }
}

/* Placeholder Section */
.content-section {
  background: url("../image/pattern-bg.jpg");
  padding: 120px 20px;
  text-align: center;
  box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.25),
    inset 0 -15px 30px rgba(0, 0, 0, 0.25);
}

.placeholder-container {
  max-width: 800px;
  margin: 0 auto;
}

.placeholder-content {
  background: transparent;
}

.placeholder-header {
  margin-bottom: 40px;
}

.placeholder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.placeholder-title {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.placeholder-subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-section {
    padding: 80px 20px;
  }

  .placeholder-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .placeholder-title {
    font-size: 2rem;
  }

  .placeholder-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 60px 15px;
  }

  .placeholder-title {
    font-size: 1.6rem;
  }

  .placeholder-subtitle {
    font-size: 0.9rem;
  }

  .placeholder-header {
    margin-bottom: 30px;
  }
}

/* Footer */
.footer {
  background: #303a42;
  color: white;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  width: 220px;
  height: auto;
}

.footer-heading {
  color: #c5a059;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #c5a059;
}

.business-info {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.business-address {
  margin: 0 0 15px 0;
  font-weight: 500;
}

.business-hours p {
  margin: 8px 0;
}

.newsletter-form {
  position: relative;
  margin-top: 15px;
  max-width: 400px;
}

.newsletter-input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  border: 1px solid #555;
  border-radius: 0;
  background: transparent;
  color: #aaa;
  font-size: 0.95rem;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #555;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-bottom-color: #c5a059;
}

.newsletter-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.newsletter-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #aaa;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  color: #c5a059;
}

/* Combined Business Details and Newsletter Section */
.footer-combined-section {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  color: #fff;
}

.newsletter-heading-stacked {
  margin-top: 30px !important;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-bottom-left {
  display: flex;
  justify-content: flex-start;
}

.footer-bottom-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-license {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #555;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #c5a059;
}

.social-link.wm {
  font-size: 0.7rem;
  font-weight: 700;
}

.social-link.yelp {
  font-size: 1.1rem;
}

.copyright {
  color: #aaa;
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
}

.footer-disclaimer {
  background: #303a42;
  padding: 20px;
  border-top: 1px solid #444;
}

.footer-disclaimer p {
  max-width: 1400px;
  margin: 0 auto;
  color: #c4c4c4;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }

  .newsletter-section {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-logo-section {
    grid-column: span 2;
    justify-content: center;
  }

  .newsletter-section {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo-section {
    grid-column: span 1;
  }

  .newsletter-section {
    grid-column: span 1;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .business-hours p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 30px 0 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo-img {
    width: 100px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-submit {
    align-self: center;
  }

  .social-media {
    gap: 10px;
  }

  .footer-disclaimer {
    padding: 15px 10px;
  }

  .footer-disclaimer p {
    font-size: 0.75rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-buttons {
    gap: 15px;
  }

  .btn-shop {
    color: #c5a059;
    background: transparent;
  }

  .btn-shop:hover {
    transform: none;
    box-shadow: none;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .main-logo {
    width: 300px;
  }

  .hero {
    margin: 10px;
    min-height: calc(100vh - 20px);
    border-width: 6px;
  }

  .parallax-note {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 25px;
  }

  .nav-logo-img {
    height: 60px;
    transform: translateY(-6px);
  }

  .navbar.scrolled .nav-logo-img {
    transform: translateY(-10px);
  }

  .nav-buttons {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
  }

  .nav-links {
    order: 2;
    flex: 1 1 100%;
    justify-content: center;
    gap: 20px;
  }

  .nav-logo {
    order: 1;
    margin-bottom: 10px;
  }

  .nav-buttons {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .navbar {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 15px;
  }

  .nav-logo-img {
    height: 50px;
    transform: translateY(-5px);
  }

  .navbar.scrolled .nav-logo-img {
    transform: translateY(-8px);
  }

  .nav-container {
    padding: 12px 15px;
    border-radius: 20px;
  }

  .navbar {
    padding: 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .main-logo {
    width: 250px;
  }

  .hero {
    margin: 5px;
    min-height: calc(100vh - 10px);
    border-width: 4px;
    border-radius: 15px;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: "";
  width: 2px;
  height: 30px;
  background: #c5a059;
  display: block;
  margin: 0 auto 10px;
}

.scroll-indicator::after {
  content: "▼";
  color: #c5a059;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Better mobile navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #f4cd82;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide mobile buttons on desktop */
.mobile-nav-buttons {
  display: none;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden !important;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
    order: 1;
  }

  /* Hide desktop nav buttons on mobile */
  .nav-buttons {
    display: none;
  }

  /* Show mobile nav buttons only in sidebar */
  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(48, 58, 66, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 25px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(197, 160, 89, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    left: -15px;
  }

  .nav-links li {
    text-align: left;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 10px 0;
    display: block;
    color: #f4cd82;
    transition: all 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff372;
    padding-left: 10px;
  }

  .mobile-nav-buttons .mobile-btn-shop {
    background: linear-gradient(45deg, #c5a059, #d4b675);
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .mobile-nav-buttons .mobile-btn-auth {
    color: #f4cd82;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-size: 0.9rem;
    padding: 12px 20px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .mobile-nav-buttons .mobile-btn-auth:hover {
    color: #fff;
    border-color: #fff;
  }

  .nav-logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-container {
    position: relative;
  }
}

@media (max-width: 768px) {
  .nav-links {
    width: 275px;
    left: -290px;
    padding: 70px 25px 25px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: 240px;
    left: -240px;
    padding: 60px 20px 20px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

.enhanced-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.enhanced-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-logo-img {
  transform: translateY(-12px);
  position: fixed;
}

.navbar.scrolled img.nav-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: -25px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.stats-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.stats-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ensures left alignment */
  gap: 1.5rem;
}

.stats-info-top {
  margin-bottom: 1.5rem;
  text-align: left; /* Ensures left alignment */
}

.stats-info-title,
.stats-info-text,
.stats-small-row,
.stat-small {
  text-align: left;
}

.stats-small-row {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-card.main-card.large-card {
  align-self: stretch; /* Makes the card fill the right column width */
  margin: 0;
}

.main-card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2.5rem 2rem;
  gap: 2rem;
}

.main-card-left,
.main-card-right {
  align-items: flex-start;
  text-align: left;
}

.stats-description {
  text-align: left;
}

.stats-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.stats-info-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stats-info-text-col {
  min-width: 200px;
  max-width: 260px;
}

.stat-small {
  align-items: flex-start;
  text-align: left;
  min-width: 100px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2em;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  line-height: 1.1;
}

.stats-header-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stats-header-left {
  flex: 1 1 50%;
  min-width: 350px;
}

.stats-header-right {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-start;
}

.stats-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.stats-info-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stats-info-text-col {
  min-width: 200px;
  max-width: 260px;
}

.stat-small {
  align-items: flex-start;
  text-align: left;
  min-width: 100px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2em;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  line-height: 1.1;
}

/* Newsletter Form Styles */
.newsletter-form {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff05;
  padding: 32px 32px 16px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer {
  border-top: 10px solid #bfa371;
}
.footer-section {
  font-weight: 800;
}
.footer-section .newsletter-form {
  box-shadow: none;
  background: none;
  margin: 0;
  padding: 0 !important;
}

.footer-section .newsletter-form input {
  padding: 5px;
  border-radius: 0;
}

.newsletter-field {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  padding: 14px 14px 14px 48px;
  border: none;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
  box-sizing: border-box;
}

.newsletter-input:focus {
  outline: 2px solid #bfa14a;
  background: #fff;
}

.newsletter-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.newsletter-section label {
  color: #444 !important;
  font-size: 0.8em !important;
}

.newsletter-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #bfa14a;
}

.newsletter-submit {
  width: 100%;
  padding: 16px 0;
  background: #ff8686;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover,
.newsletter-submit:focus {
  background: #e05c5c;
}

.newsletter-disclaimer {
  margin-top: 8px;
  color: #444;
  font-size: 0.98rem;
  opacity: 0.7;
}

/* --- Contact Page Custom Styles --- */

/* Contact Main Section */
.contact-main {
  padding: 80px 20px;
  background: #232025;
  color: #fff;
  position: relative;
}
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}
.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Contact Info Card */
.contact-info-card {
  flex: 1 1 340px;
  background: #29262b;
  border-radius: 18px;
  padding: 40px 32px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-card hr {
  border: none;
  border-top: 1px solid #39363b;
}
.contact-info-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.contact-info-label span:first-child {
  font-size: 1.6rem;
  color: #c5a059;
}
.contact-info-label span:last-child {
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-info-value {
  color: #bdbdbd;
  font-size: 1rem;
  margin-left: 2.2rem;
}

/* Contact Form & Map Card */
.contact-form-map-card {
  flex: 2 1 480px;
  background: #29262b;
  border-radius: 18px;
  padding: 32px 32px 32px 32px;
  min-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-map-card .map-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-row {
  display: flex;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: #232025;
  color: #fff;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  margin-top: 8px;
  background: linear-gradient(90deg, #c5a059 60%, #e7d3a1 100%);
  color: #232025;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 16px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-info-card,
  .contact-form-map-card {
    padding: 32px 20px;
  }
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info-card,
  .contact-form-map-card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-main {
    padding: 40px 5px;
  }
  .contact-info-card,
  .contact-form-map-card {
    padding: 20px 8px;
  }
  .contact-form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form button {
    width: 100%;
    padding: 14px 0;
  }
}

/* Footer Newsletter Form - Improved Styling */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  max-width: 280px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.newsletter-input:focus {
  outline: none;
  border-color: #c5a059;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.newsletter-input:hover {
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #c5a059 0%, #a68a48 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.newsletter-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.newsletter-submit:hover {
  background: linear-gradient(135deg, #d4af68 0%, #b59650 100%);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  transform: translateY(-1px);
}

.newsletter-submit:hover::before {
  left: 100%;
}

.newsletter-submit:active {
  transform: translateY(0);
}

/* Alternative horizontal layout for wider screens */
@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
    align-items: center;
    max-width: 320px;
    gap: 8px;
  }

  .newsletter-input {
    flex: 1;
    margin-bottom: 0;
  }

  .newsletter-submit {
    width: 100px;
    font-size: 0.85rem;
    padding: 0 16px;
  }
}

/* Enhanced focus accessibility */
.newsletter-input:focus-visible,
.newsletter-submit:focus-visible {
  outline: 2px solid #c5a059;
  outline-offset: 2px;
}

/* Footer Newsletter Form - Reference Image Style */
.newsletter-form {
  position: relative;
  margin-top: 15px;
  max-width: 300px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 50px 12px 0;
  border: none;
  border-bottom: 1px solid #555;
  background: transparent;
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: #aaa;
  font-weight: 300;
}

.newsletter-input:focus {
  outline: none;
  border-bottom-color: #c5a059;
  color: white;
}

.newsletter-submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  color: #e9e9e9;
  transform: translateY(-50%) scale(1.1);
}

.newsletter-submit:active {
  transform: translateY(-50%) scale(0.95);
}

/* Ensure the heading matches the reference */
.footer-section .footer-heading {
  color: #c5a059;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 35px;
  text-transform: none;
}

/* Body Newsletter Form - Distinct Styling */
.body-newsletter-form {
  max-width: 450px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(191, 161, 71, 0.1) 0%,
    rgba(191, 161, 71, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(191, 161, 71, 0.3);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.body-newsletter-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(191, 161, 71, 0.6),
    transparent
  );
}

.body-newsletter-field {
  position: relative;
  display: flex;
  align-items: center;
}

.body-newsletter-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.body-newsletter-icon svg {
  fill: #bfa147;
  transition: fill 0.3s ease;
}

.body-newsletter-input {
  width: 100%;
  padding: 18px 18px 18px 56px;
  border: 2px solid rgba(191, 161, 71, 0.2);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.body-newsletter-input:focus {
  outline: none;
  border-color: #bfa147;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 0 0 4px rgba(191, 161, 71, 0.1);
  transform: translateY(-1px);
}

.body-newsletter-input::placeholder {
  color: #888;
  font-weight: 400;
}

.body-newsletter-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.body-newsletter-agree input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #bfa147;
  margin-top: 2px;
  flex-shrink: 0;
}

.body-newsletter-agree label {
  color: #555 !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  cursor: pointer;
}

.body-newsletter-submit {
  width: 100%;
  padding: 18px 0;
  background: linear-gradient(135deg, #bfa147 0%, #d4b55a 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(191, 161, 71, 0.3);
  position: relative;
  overflow: hidden;
}

.body-newsletter-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.body-newsletter-submit:hover {
  background: linear-gradient(135deg, #d4b55a 0%, #bfa147 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(191, 161, 71, 0.4);
}

.body-newsletter-submit:hover::before {
  left: 100%;
}

.body-newsletter-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(191, 161, 71, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .body-newsletter-form {
    margin: 0 20px;
    padding: 32px 24px;
  }

  .body-newsletter-input {
    padding: 16px 16px 16px 48px;
    font-size: 0.95rem;
  }

  .body-newsletter-submit {
    padding: 16px 0;
    font-size: 1rem;
  }
}

/* FAQ Section */
.content-section {
  background: url(../image/pattern-bg.jpg);
  padding: 60px 20px;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-content {
  background: transparent;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-title {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  border-bottom: 2px solid #ffe6b9;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #e74c3c;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 30px 20px 30px;
}

.faq-answer p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-section {
    padding: 80px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px 25px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 300px;
  }
}

/* Footer Tagline and License Styles */
.footer-tagline {
  display: block;
  color: #bbb;
  font-size: 1rem;
  line-height: 1.5;
  margin: 15px 0 20px 0;
  font-weight: 400;
}

.footer-license {
  display: block;
  color: #bbb;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 10px 0 0 0;
  text-transform: uppercase;
}

/* Blog Post Specific Styles */
.blog-page {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Post Hero Section */
.post-hero {
  background: transparent;
  padding: 0;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("image/cannabis-bg-hero.jpg") center/cover;
  opacity: 0.1;
  z-index: 0;
}

.post-hero-content {
  position: relative;
  z-index: 1;
}

.post-category {
  color: #c5a059;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  color: #cccccc;
  font-size: 14px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #c5a059;
}

.post-date {
  background: #c5a059;
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 16px;
  font-weight: 600;
}

.read-time {
  color: #999999;
}

/* Post Content */
.post-content-section {
  background-color: #2e2b30;
  padding: 5px 0;
}
.post-content {
  background: linear-gradient(135deg, #343036 0%, rgba(52, 48, 54, 0.4) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 48px;
}

.post-content h2 {
  color: #c5a059;
  font-size: 2rem;
  font-weight: 700;
  margin: 48px 0 24px 0;
  line-height: 1.3;
}

.post-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 36px 0 20px 0;
  line-height: 1.4;
}

.post-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #e0e0e0;
}

.post-content ul,
.post-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #e0e0e0;
}

.post-content blockquote {
  background: rgba(197, 160, 89, 0.1);
  border-left: 4px solid #c5a059;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
  font-style: italic;
  color: #ffffff;
}

.post-content .highlight-box {
  background: linear-gradient(135deg, #c5a059 0%, #d4b675 100%);
  color: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  font-weight: 600;
}

.post-content .info-box {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.post-content .warning-box {
  background: rgba(255, 99, 71, 0.1);
  border: 1px solid rgba(255, 99, 71, 0.3);
  border-left: 4px solid #ff6347;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  color: #ffcccc;
}

/* Author Bio */
.author-bio {
  background: linear-gradient(135deg, #343036 0%, rgba(52, 48, 54, 0.4) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #c5a059;
  flex-shrink: 0;
}

.author-bio-content h3 {
  color: #c5a059;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.author-bio-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social a {
  background: rgba(197, 160, 89, 0.2);
  color: #c5a059;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.author-social a:hover {
  background: #c5a059;
  color: #1a1a1a;
}

/* Related Posts */
.related-posts {
  margin-bottom: 64px;
}

.related-posts h2 {
  color: #c5a059;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-card {
  background: linear-gradient(135deg, #343036 0%, rgba(52, 48, 54, 0.4) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 16px;
  padding: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 16px;
}

.related-content {
  padding: 16px;
}

.related-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #ffffff;
}

.related-content p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("image/cannabis-bg-purple.jpg") center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h6 {
  color: #c5a059;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-btn {
  background: linear-gradient(135deg, #c5a059 0%, #d4b675 100%);
  color: #1a1a1a;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Navigation buttons */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.nav-btn {
  background: linear-gradient(135deg, #343036 0%, rgba(52, 48, 54, 0.4) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s;
  flex: 1;
  max-width: 300px;
}

.nav-btn:hover {
  transform: translateY(-2px);
  border-color: #c5a059;
}

.nav-btn-label {
  color: #c5a059;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.nav-btn-title {
  font-weight: 600;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post-title {
    font-size: 2.5rem;
  }

  .post-meta {
    flex-direction: column;
    gap: 12px;
  }

  .post-content {
    padding: 24px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .post-navigation {
    flex-direction: column;
  }

  .cta-content h1 {
    font-size: 2rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
.read-more a,
.post-metadata a {
  color: #c5a059;
  text-decoration: none;
}
.blog article.post h1.post-title {
  font-size: 32px;
}
.page-title h1,
.page-title h2 {
  color: #cfaf6c !important;
}
.page-image img,
.post-content,
.post-metadata {
  max-width: 1200px;
}
.read-more a {
  color: #cba966;
  text-decoration: none;
}

.read-more,
.post-metadata {
  font-size: 12px !important;
}
/* Blog-specific styles */
.blog-page {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 120px 0 80px 0;
  text-align: center;
  margin-top: 80px; /* Account for fixed navbar */
  position: relative;
  overflow: hidden;
}

.blog-hero h6 {
  color: #ffa500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.newsletter-box {
  background: rgba(36, 31, 38, 0.8);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.newsletter-box h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.newsletter-box p {
  color: #cccccc;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
}

.newsletter-form input::placeholder {
  color: #999999;
}

.newsletter-btn {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
}

/* Articles Section */
.articles-section {
  padding-top: 80px;
  background-color: #303a42;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section-label {
  color: #ffa500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.article-card {
  background: linear-gradient(154deg, #000000c4 0%, rgb(26 42 48) 100%);
  border: 5px solid rgb(204 172 105);
  border-radius: 16px;
  padding: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 5px solid rgb(255, 225, 160);
}

.article-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.article-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
}

.article-date {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ffa500;
  color: #1a1a1a;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.article-content {
  padding: 16px;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-content h3 a {
  text-decoration: none;
  color: #ffffff;
}

.article-content p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Sections */
.cta-section {
  background: url("../image/cannabis-bg-products.jpg") center/cover;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h6 {
  color: #ffa500;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-btn {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #0f0f0f;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(135deg, #343036 0%, rgba(52, 48, 54, 0.4) 100%);
  border: 2px solid rgba(255, 165, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card blockquote {
  margin: 0;
  flex-grow: 1;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
}

.testimonial-avatar {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffa500;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card footer {
  text-align: center;
  margin-top: 8px;
}

.testimonial-card footer strong {
  color: #ffffff;
  font-weight: 600;
}

.testimonial-card footer span {
  color: #cccccc;
  font-size: 14px;
}

/* Navbar adjustments for locomotive scroll */
.navbar {
  position: fixed !important;
  z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h1 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .parallax-bg-text {
    font-size: 0;
  }
}

.blog-detail .post .page-image,
.blog-detail .post .post-metadata {
  display: none;
}

.about-center img {
  min-width: 400px;
}
/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/subheader.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 0;
}

.about-hero-content {
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
}

.about-hero h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-note {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Main Section */
.about-main {
  padding: 30px;
  background: linear-gradient(135deg, #c5a059, #d4b675, #c5a059);
}

.about-main-inner {
  background: url(../image/pattern-bg.jpg);
  border-radius: 10px;
  padding: 80px 60px;
}

.about-main-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-left p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.about-button {
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  min-width: 250px;
}

.about-button.primary {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: 2px solid transparent;
}

.about-button.primary:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.about-button.secondary {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

.about-button.secondary:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.about-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cannabis-leaf {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-right h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-right p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Quality Standards Section */
.quality-section {
  background: #111419;
  padding: 80px 20px;
  color: white;
}

.quality-container {
  max-width: 1400px;
  margin: 0 auto;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.quality-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.quality-description {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.testimonial {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c5a059;
}

.testimonial-content {
  flex: 1;
}

.testimonial-name {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-title {
  color: #c5a059;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonial-quote {
  color: #ddd;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  quotes: "" " " "" "'" "'";
}

.testimonial-quote:before {
  content: open-quote;
}

.testimonial-quote:after {
  content: close-quote;
}

.slideshow-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.slideshow-main {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #1a1a1a;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.slide-overlay h3 {
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-overlay p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.slideshow-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.slide-nav-btn {
  background: transparent;
  border: none;
  border-radius: 25px;
  padding: 15px 20px;
  color: #bbb;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  min-width: 180px;
}

.slide-nav-btn:hover {
  background: #4a5f7a;
  color: white;
}

.slide-nav-btn.active {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.slide-number {
  display: block;
}

/* Placeholder fallback for missing images */
.slide-image {
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1rem;
}

.slide-image:before {
  content: "Image Placeholder";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-main {
    padding: 25px;
  }

  .about-main-inner {
    padding: 60px 40px;
  }

  .about-content {
    gap: 40px;
  }

  .cannabis-leaf {
    width: 250px;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 20px 30px;
  }

  .nav.scrolled .nav-container {
    padding: 15px 30px;
  }

  .nav-left {
    gap: 25px;
  }

  .about-hero {
    height: 30vh;
  }

  .about-hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
  }

  .about-hero p {
    font-size: 1.4rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-buttons {
    align-items: center;
  }

  .cannabis-leaf {
    width: 200px;
  }

  .quality-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .slideshow-container {
    flex-direction: column;
    gap: 30px;
  }

  .slideshow-nav {
    flex-direction: row;
    justify-content: center;
  }

  .slide-nav-btn {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
  }

  .nav.scrolled .nav-container {
    padding: 12px 20px;
  }

  .nav-left {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-button {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .about-hero {
    background-attachment: scroll;
    height: 25vh;
  }

  .about-hero h1 {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }

  .about-hero p {
    font-size: 1.2rem;
  }

  .about-main {
    margin: 10px;
    padding: 20px;
  }

  .about-main-inner {
    padding: 60px 30px;
  }

  .about-left h2 {
    font-size: 2.2rem;
  }

  .about-right h3 {
    font-size: 1.8rem;
  }

  .about-left p,
  .about-right p {
    font-size: 1rem;
  }

  .about-button {
    font-size: 0.9rem;
    padding: 12px 25px;
    min-width: 220px;
  }

  .quality-section {
    padding: 60px 15px;
  }

  .quality-heading {
    font-size: 2rem;
  }

  .quality-description {
    font-size: 1rem;
  }

  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .slide-nav-btn {
    padding: 12px 15px;
    font-size: 0.8rem;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .nav-left {
    gap: 15px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .nav-button {
    padding: 8px 15px;
    font-size: 0.75rem;
  }

  .nav-auth {
    font-size: 0.8rem;
  }

  .about-hero {
    height: 22vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .about-main {
    margin: 5px;
    padding: 15px;
    border-radius: 15px;
  }

  .about-main-inner {
    padding: 40px 20px;
  }

  .about-content {
    gap: 40px;
  }

  .about-left h2 {
    font-size: 1.8rem;
  }

  .about-right h3 {
    font-size: 1.5rem;
  }

  .about-left p,
  .about-right p {
    font-size: 0.9rem;
  }

  .about-button {
    font-size: 0.8rem;
    padding: 10px 20px;
    min-width: 200px;
  }

  .cannabis-leaf {
    width: 150px;
  }

  .quality-section {
    padding: 40px 10px;
  }

  .quality-heading {
    font-size: 1.6rem;
  }

  .quality-description {
    font-size: 0.9rem;
  }

  .avatar-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .slideshow-nav {
    flex-direction: column;
    gap: 8px;
  }

  .slide-nav-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
    min-width: 100px;
  }
}

/* Placeholder Section */
.content-section {
  background: url(../image/pattern-bg.jpg);
  padding: 120px 20px;
  text-align: center;
}

.placeholder-container {
  max-width: 800px;
  margin: 0 auto;
}

.placeholder-content {
  background: transparent;
}

.placeholder-header {
  margin-bottom: 40px;
}

.placeholder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.placeholder-title {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.placeholder-subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Placeholder Responsive Design */
@media (max-width: 768px) {
  .content-section {
    padding: 80px 20px;
  }

  .placeholder-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .placeholder-title {
    font-size: 2rem;
  }

  .placeholder-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 60px 15px;
  }

  .placeholder-title {
    font-size: 1.6rem;
  }

  .placeholder-subtitle {
    font-size: 0.9rem;
  }

  .placeholder-header {
    margin-bottom: 30px;
  }
}
