/* Enhanced styles for Wanhar Impex website
   Exact replica of BuildSaltWall design with video integration,
   trending products, testimonials, blog articles, and customer creations.
   Version: 20250120o - Fixed mobile button outside header, desktop inside header */

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

:root {
  /* Primary accent color reminiscent of Himalayan pink salt */
  --primary-color: #c86f45;
  --secondary-color: #8b4513;
  --accent-color: #ff6b35;
  /* Light backgrounds for a clean, elegant feel */
  --bg-color: #fafafa;
  --card-bg: #ffffff;
  --text-color: #333333;
  --muted-text: #666666;
  --gradient-bg: linear-gradient(135deg, #c86f45 0%, #8b4513 100%);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  /* Prevent horizontal scroll on mobile */
  overflow-x: hidden;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
}

/* Hamburger for mobile navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: var(--text-color);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Pointer events disabled on hidden slides to prevent stacking text */
.hero-slider .slide {
  pointer-events: none;
}

.hero-slider .slide.active {
  pointer-events: auto;
}

@media (max-width: 768px) {
  /* Mobile navigation fixes */
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1001;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 8px;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  nav.open {
    display: block !important;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav li {
    margin: 10px 0;
  }
  
  nav a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  /* Hide dropdown on mobile */
  .dropdown-menu {
    display: none !important;
  }
  
  nav.open ul {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  
  nav.open ul li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  nav.open ul li:last-child {
    border-bottom: none;
  }
  
  nav.open ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Hero slider mobile fixes */
  .hero-slider {
    min-height: 60vh;
  }
  
  .hero-slider .slide-content {
    padding: 15px;
    max-width: 95%;
  }
  
  .hero-slider .slide-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-slider .slide-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-slider .slide-content .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
  }
  
  /* Section mobile fixes */
  .section {
    padding: 40px 15px;
  }
  
  .section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  /* Product grid mobile fixes */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  
  .product-card {
    margin: 0;
  }
  
  .product-card img {
    height: 200px;
    object-fit: contain;
    background-color: #f8f8f8;
    border-radius: 8px;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
    margin: 15px;
  }
  
  .product-card p {
    font-size: 0.9rem;
    margin: 0 15px 15px;
    line-height: 1.5;
  }
  
  .product-card a {
    margin: 0 15px 20px;
    display: block;
    text-align: center;
    padding: 10px 20px;
  }
  
  /* Features mobile fixes */
  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 350px;
    margin: 0;
  }
  
  /* Services mobile fixes */
  .services {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 350px;
    margin: 0;
  }
  
  /* Gallery mobile fixes */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-grid img {
    height: 250px;
  }
  
  /* Trust features mobile fixes */
  .trust-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 30px 15px;
  }
  
  .trust-feature {
    padding: 20px 15px;
  }
  
  .trust-feature span {
    font-size: 1.5rem;
  }
  
  .trust-feature h3 {
    font-size: 1rem;
  }
  
  .trust-feature p {
    font-size: 0.8rem;
  }
  
  /* Contact form mobile fixes */
  .contact-form {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Footer mobile fixes */
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 15px;
    text-align: center;
  }
  
  footer h4 {
    margin-bottom: 15px;
  }
  
  footer ul li {
    margin: 8px 0;
  }
  
  /* WhatsApp button mobile positioning */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/* Logo image styling */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

header .logo:hover {
  opacity: 0.8;
}

/* Language Toggle Button */
.language-toggle {
  margin-left: 20px;
}

/* Desktop Language Button Positioning */
@media (min-width: 769px) {
  .language-toggle {
    position: relative;
    margin-left: 20px;
    display: inline-block;
  }
  
  /* Hide mobile language button on desktop */
  .mobile-language-toggle {
    display: none !important;
  }
}

.language-toggle button {
  background: linear-gradient(135deg, var(--primary-color), #a0522d);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 111, 69, 0.3);
}

.language-toggle button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 111, 69, 0.4);
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] header {
  flex-direction: row-reverse;
}

[dir="rtl"] .language-toggle {
  left: 20px;
  right: auto;
}

[dir="rtl"] nav ul {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-buttons {
  justify-content: center;
}

[dir="rtl"] .products-grid {
  direction: rtl;
}

[dir="rtl"] .product-card {
  text-align: right;
}

[dir="rtl"] .gallery-grid {
  direction: rtl;
}

[dir="rtl"] .testimonial-card {
  text-align: right;
}

[dir="rtl"] .blog-grid {
  direction: rtl;
}

[dir="rtl"] .blog-item {
  text-align: right;
}

[dir="rtl"] .creations-grid {
  direction: rtl;
}

[dir="rtl"] .creation-item {
  text-align: right;
}

[dir="rtl"] .footer-content {
  direction: rtl;
}

[dir="rtl"] .footer-section {
  text-align: right;
}

[dir="rtl"] .footer-bottom {
  text-align: center;
}

/* Keep phone numbers in correct direction in RTL */
[dir="rtl"] a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
}

/* Keep phone numbers in contact info sections */
[dir="rtl"] .contact-info a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
}

/* Mobile Language Button - Always Visible and Separate */
@media (max-width: 768px) {
  /* Mobile language button is outside header */
  .mobile-language-toggle {
    position: fixed !important;
    top: 15px !important;
    right: 80px !important; /* Move away from hamburger menu icon */
    z-index: 99999 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
  }
  
  /* Hide the original language button in header for mobile */
  nav .language-toggle {
    display: none !important;
  }
  
  /* Show mobile language button on mobile */
  .mobile-language-toggle {
    display: block !important;
  }
  
  .mobile-language-toggle button {
    padding: 8px 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(200, 111, 69, 0.8) !important;
    min-width: 60px !important;
    background: linear-gradient(135deg, #d2691e, #a0522d) !important;
    border: 2px solid #fff !important;
    color: white !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-language-toggle button span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
    font-weight: 700 !important;
  }
  
  .language-toggle button:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 12px 30px rgba(200, 111, 69, 1.2) !important;
  }
}

/* Mobile RTL Support */
@media (max-width: 768px) {
  [dir="rtl"] .language-toggle {
    left: 80px !important; /* Move away from hamburger menu icon */
    right: auto !important;
    top: 15px !important;
    position: fixed !important;
    z-index: 99999 !important;
  }
  
  [dir="rtl"] .hamburger {
    order: -1;
    margin-left: 10px;
    margin-right: 0;
  }
  
  [dir="rtl"] nav {
    text-align: right;
    direction: rtl;
  }
  
  [dir="rtl"] nav ul {
    flex-direction: column;
    align-items: flex-end;
    padding-right: 0;
    padding-left: 20px;
  }
  
  [dir="rtl"] nav ul li {
    text-align: right;
    margin: 5px 0;
  }
  
  [dir="rtl"] nav ul li a {
    text-align: right;
    padding: 10px 20px 10px 10px;
  }
  
  [dir="rtl"] .hero-content {
    text-align: center;
  }
  
  [dir="rtl"] .hero-buttons {
    justify-content: center;
  }
  
  /* Fix header layout in RTL */
  [dir="rtl"] header {
    direction: rtl;
  }
  
  [dir="rtl"] .header-content {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .logo {
    order: 2;
  }
  
  [dir="rtl"] .hamburger {
    order: 1;
  }
  
  /* Fix mobile header container */
  [dir="rtl"] .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  /* Ensure proper spacing in RTL mobile */
  [dir="rtl"] .hamburger {
    margin-left: 10px;
    margin-right: 0;
  }
  
  /* Fix mobile nav positioning */
  [dir="rtl"] nav {
    left: 0;
    right: 0;
    text-align: right;
  }
  
  [dir="rtl"] nav ul {
    padding: 20px;
    margin: 0;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-weight: 500;
  padding: 8px 0;
  display: inline-block;
}

/* Hero section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  /* Use the new spa themed hero image from the updated photo set */
  background-image: url('../images/spa-hero.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

/* Hero slider styles */
.hero-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.hero-slider .slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-slider .slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--muted-text);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  margin: 5px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #d47f59;
}

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

.section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

/* Feature cards */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  width: 260px;
  text-align: left;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Product grid */
.products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 20px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.product-card p {
  margin: 0 15px 15px;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.product-card a {
  margin: 0 15px 20px;
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Hover effects for product cards */
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Trust features section inspired by BuildSaltWall */
.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  /* Light background for trust icons */
  background-color: #f4f4f4;
  text-align: center;
  color: var(--muted-text);
}

.trust-feature {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-feature span {
  font-size: 2rem;
  margin-bottom: 10px;
}

.trust-feature h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.trust-feature p {
  font-size: 0.85rem;
  color: var(--muted-text);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  width: 280px;
  text-align: left;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Contact form */
.contact-info {
  margin-bottom: 40px;
  color: var(--muted-text);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Light theme for contact form inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fafafa;
  color: var(--text-color);
  font-size: 0.9rem;
}

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

.contact-form button {
  margin-top: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #d47f59;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #f4f4f4;
  padding: 40px 20px;
  color: var(--muted-text);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* Direct div structure (index page) */
footer > div {
  margin-bottom: 20px;
}

footer > div h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

footer > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer > div ul li {
  margin: 8px 0;
}

footer > div ul li a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer > div ul li a:hover {
  color: var(--primary-color);
}

footer h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin: 6px 0;
}

footer ul li a {
  color: var(--muted-text);
  font-size: 0.9rem;
}

footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #777;
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
  .hero-slider .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-slider .slide-content p {
    font-size: 0.9rem;
  }
  
  .section h2 {
    font-size: 1.4rem;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Fix for mobile viewport issues */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .hero-slider .slide-content {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  /* Ensure full width usage on mobile */
  .section {
    width: 100%;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .products-grid,
  .gallery-grid,
  .features,
  .services {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero Video Styles */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.btn-primary {
  background: var(--gradient-bg);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Trending Products Section */
.trending-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.trending-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

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

.trending-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trending-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-bg);
}

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

.trending-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.trending-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.trending-item p {
  color: var(--muted-text);
  margin-bottom: 20px;
}

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

.old-price {
  text-decoration: line-through;
  color: var(--muted-text);
  font-size: 1.2rem;
  margin-left: 10px;
}

.btn-trending {
  background: var(--gradient-bg);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 80px 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.customer-info strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.customer-info span {
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* Video Showcase Section */
.video-showcase {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.video-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.video-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.video-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.video-item h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.video-item p {
  padding: 0 20px 20px;
  color: var(--muted-text);
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

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

.faq-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-bg);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 20px;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-form button {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Sale Banner */
.sale-banner {
  background: var(--primary-color);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1000;
}

.sale-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sale-text {
  font-size: 1rem;
  font-weight: 700;
}

.phone-number {
  font-size: 0.9rem;
}

/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 5px 15px;
  margin-left: 20px;
}

.search-input {
  border: none;
  background: transparent;
  padding: 8px 10px;
  outline: none;
  width: 200px;
}

.search-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid rgba(200, 111, 69, 0.1);
  backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  position: relative;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(200, 111, 69, 0.1) 0%, rgba(200, 111, 69, 0.05) 100%);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-menu a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover:before {
  transform: scaleY(1);
}

/* Trending Keywords */
.trending-keywords {
  background: #f8f9fa;
  padding: 40px 0;
}

.trending-keywords h2 {
  text-align: center;
    font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.keyword-tag {
  background: white;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.keyword-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background: white;
  padding: 80px 0;
}

.blog-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.blog-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1.4;
}

.blog-item p {
  padding: 0 20px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Customer Creations */
.customer-creations {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.customer-creations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.customer-creations p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.creation-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.creation-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.creation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.creation-item:hover .creation-overlay {
  opacity: 1;
}

.creation-overlay h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* Blog Page Styles */
.blog-hero {
  background: var(--gradient-bg);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-main {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-articles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-article {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
}

.article-image {
  flex: 0 0 300px;
  height: 200px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.article-content {
  flex: 1;
  padding: 0;
}

.article-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-meta .date,
.article-meta .category {
  background: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-color);
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 15px;
  color: var(--primary-color);
}

.article-content ul {
  margin: 20px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.article-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

.newsletter-section {
  background: var(--gradient-bg);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
    font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.blog-article {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.blog-article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.article-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 40px;
}

.article-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.article-meta .date {
  font-weight: 500;
}

.article-meta .category {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.article-content p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-color);
}

.article-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.article-content strong {
  color: var(--primary-color);
  font-weight: 600;
}


/* WhatsApp Button Improvements */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Chatbot Styles */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: var(--primary-color);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 350px;
}

.chatbot-message {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
}

.bot-message {
  background: #f1f3f4;
  color: #333;
  margin-right: auto;
}

.user-message {
  background: var(--primary-color);
  color: white;
  margin-left: auto;
}

.chatbot-input {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 0.9rem;
}

.chatbot-input button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.chatbot-input button:hover {
  background: var(--secondary-color);
}

.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 111, 69, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(200, 111, 69, 0.6);
}

.chatbot-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Responsive for new elements */
@media (max-width: 768px) {
  .special-offer {
    margin: 20px 10px 0;
    padding: 15px;
  }
  
  .special-offer h3 {
    font-size: 1.2rem;
  }
  
  .chatbot {
    width: 90%;
    height: 70vh;
    bottom: 10px;
    right: 5%;
  }
  
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }
  
  .chatbot-toggle {
    bottom: 80px;
    right: 20px;
  }
  
  /* Blog Page Mobile Styles */
  .blog-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .blog-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .blog-articles {
    padding: 20px;
  }
  
  .blog-article {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .article-content {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }
  
  .article-image {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .article-content h2 {
    display: block !important;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--primary-color) !important;
    visibility: visible !important;
  }
  
  .article-meta {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .article-meta .date,
  .article-meta .category {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
  }
  
  .article-content p {
    display: block !important;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .article-content h3 {
    display: block !important;
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--primary-color) !important;
    visibility: visible !important;
  }
  
  .article-content ul {
    display: block !important;
    margin: 15px 0;
    padding-left: 20px;
    visibility: visible !important;
  }
  
  .article-content li {
    display: list-item !important;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333 !important;
    visibility: visible !important;
  }
  
  .article-content strong {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  /* Footer Mobile Styles */
  footer {
    grid-template-columns: 1fr !important;
    gap: 25px;
    padding: 20px 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 25px;
    padding: 0 10px;
  }
  
  /* Direct div structure mobile */
  footer > div {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
  }
  
  footer > div:last-of-type {
    border-bottom: none;
  }
  
  footer > div h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  footer > div ul li {
    margin: 10px 0;
  }
  
  footer > div ul li a {
    font-size: 0.95rem;
  }
  
  /* Footer section structure mobile */
  .footer-section {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .footer-section:last-child {
    border-bottom: none;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .footer-section ul li {
    margin: 10px 0;
  }
  
  .footer-section ul li a {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
  
  /* Newsletter Section Mobile */
  .newsletter-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .newsletter-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .newsletter-form input {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  .newsletter-form button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Additional Mobile Improvements */
  .blog-main {
    padding: 20px 0;
  }
  
  .blog-article {
    margin-bottom: 30px;
    padding: 15px;
  }
  
  .article-content h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .article-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
  }
  
  .article-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .article-content ul {
    padding-left: 15px;
  }
  
  .article-content li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  /* Footer Mobile Improvements */
  footer {
    padding: 30px 20px;
  }
  
  footer > div {
    margin-bottom: 30px;
  }
  
  footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  footer ul {
    padding-left: 0;
  }
  
  footer li {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  footer a {
    font-size: 0.9rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .contact-form button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
  }
  
  /* Products Grid Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .product-card {
    padding: 20px;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
  }
  
  .product-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .testimonial p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  /* FAQ Mobile */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .faq-item {
    padding: 15px;
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
  }
  
  .faq-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* About Page Mobile Styles */
  .about-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .about-hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about-hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-content {
    padding: 20px;
  }
  
  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .value-card {
    padding: 20px;
    text-align: center;
  }
  
  .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .value-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Products Page Mobile Styles */
  .products-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .products-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .products-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .product-section {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .product-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .product-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .product-image {
    width: 100%;
    order: 1;
  }
  
  .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-info {
    order: 2;
    padding: 0;
  }
  
  .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .product-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  /* Contact Page Mobile Styles */
  .contact-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .contact-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .contact-content {
    padding: 20px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .contact-info a {
    font-size: 0.95rem;
    color: var(--primary-color);
  }
  
  .contact-form {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  .form-group textarea {
    height: 120px;
    resize: vertical;
  }
  
  .contact-form button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Projects Page Mobile Styles */
  .projects-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .projects-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .projects-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .project-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .project-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Services Page Mobile Styles */
  .services-hero {
    padding: 40px 20px;
    text-align: center;
  }
  
  .services-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .services-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .service-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* General Mobile Improvements */
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Mobile Navigation Fix */
  .hamburger {
    display: flex !important;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 8px;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  nav.open {
    display: block !important;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav li {
    margin: 10px 0;
  }
  
  nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
  }
}

/* Keyframe animation for hero content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Form Success Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  font-size: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.popup-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.popup-content p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.popup-button {
  background: var(--gradient-bg);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(200, 111, 69, 0.3);
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 111, 69, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  
  .trending-grid,
  .testimonials-grid,
  .video-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}