/* EcoNclean Theme CSS - Custom Styles for Index and Technology Pages */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 0 0 14px 14px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

header .brand {
  flex-shrink: 1;
  min-width: 0;
}

header .brand img {
  max-width: 100%;
  max-height: 50px;
  height: auto;
  display: block;
}

/* Add padding to body to compensate for fixed header */
body {
  padding-top: 90px;
}

/* Hero Section Enhancements */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
}

.scroll-indicator {
  text-align: center;
  margin: 50px 0 30px 0;
  animation: fadeInBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.scroll-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 16px rgba(107, 191, 78, 0.4);
}

@keyframes fadeInBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Hero CTA Buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.4);
}

.hero-cta-btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 2px solid var(--blue-azur);
}

.hero-cta-btn.secondary:hover {
  background: var(--blue-azur);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 134, 211, 0.3);
}

@media (max-width: 600px) {
  .hero-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Desktop Layout: Video left, Steps right */
.how-to-order-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .how-to-order-wrapper {
    grid-template-columns: 45% 55%;
    gap: 50px;
  }
  
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Banner video styling with overlay */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.banner video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.banner-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 24px 30px;
  border-radius: 12px;
  color: white;
  z-index: 10;
}

.banner-overlay h2 {
  color: white;
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 800;
}

.banner-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin: 0;
}

.banner-cta {
  display: inline-block;
  background: var(--green-eco);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

.banner-cta:hover {
  background: #5aaa42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.5);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Video container styling for mobile-friendly vertical video */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky Action Buttons (WhatsApp + Call) */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #1D4E89;
}

/* Mobile Order Button (visible only on mobile) */
.mobile-order-btn {
  display: none;
  background: var(--green-eco);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
  white-space: nowrap;
}

.mobile-order-btn:hover {
  background: #5aaa42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  
  header {
    border-radius: 0 0 12px 12px;
    padding: 10px 15px;
  }
  
  header .brand img {
    max-height: 40px;
    width: auto;
  }
  
  .mobile-order-btn {
    display: inline-block;
    margin-left: auto;
    margin-right: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .hamburger {
    margin-left: 8px;
  }
  
  .banner-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px 20px;
  }
  
  .banner-overlay h2 {
    font-size: 1.4rem;
  }
  
  .banner-overlay p {
    font-size: 0.95rem;
  }
  
  .banner-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badge {
    font-size: 0.8rem;
  }
  
  .banner {
    border-radius: 8px;
  }
  
  .banner video {
    border-radius: 8px;
  }
  
  .video-container {
    max-width: 100%;
    margin: 30px auto;
  }
  
  .sticky-actions {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .sticky-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  header {
    padding: 8px 12px;
  }
  
  header .brand img {
    max-height: 35px;
  }
  
  .mobile-order-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .hamburger {
    margin-left: 6px;
  }
}

/* EcoNclean Theme CSS - Custom Styles for Index and Technology Pages */

/* Video loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.video-loading img {
  max-width: 80px;
  filter: brightness(0) invert(1);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 0 0 14px 14px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

header .brand {
  flex-shrink: 1;
  min-width: 0;
}

header .brand img {
  max-width: 100%;
  max-height: 50px;
  height: auto;
  display: block;
}

/* Add padding to body to compensate for fixed header */
body {
  padding-top: 90px;
}

/* Hero Section Enhancements */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
}

.scroll-indicator {
  text-align: center;
  margin: 50px 0 30px 0;
  animation: fadeInBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.scroll-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 16px rgba(107, 191, 78, 0.4);
}

@keyframes fadeInBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Hero CTA Buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.4);
}

.hero-cta-btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 2px solid var(--blue-azur);
}

.hero-cta-btn.secondary:hover {
  background: var(--blue-azur);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 134, 211, 0.3);
}

@media (max-width: 600px) {
  .hero-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Desktop Layout: Video left, Steps right */
.how-to-order-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .how-to-order-wrapper {
    grid-template-columns: 45% 55%;
    gap: 50px;
  }
  
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Banner video styling with overlay */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.banner video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.banner-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 24px 30px;
  border-radius: 12px;
  color: white;
  z-index: 10;
}

.banner-overlay h2 {
  color: white;
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 800;
}

.banner-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin: 0;
}

.banner-cta {
  display: inline-block;
  background: var(--green-eco);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

.banner-cta:hover {
  background: #5aaa42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.5);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Video container styling for mobile-friendly vertical video */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky Action Buttons (WhatsApp + Call) */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #1D4E89;
}

/* Mobile Order Button (visible only on mobile) */
.mobile-order-btn {
  display: none;
  background: var(--green-eco);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
  white-space: nowrap;
}

.mobile-order-btn:hover {
  background: #5aaa42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  
  header {
    border-radius: 0 0 12px 12px;
    padding: 10px 15px;
  }
  
  header .brand img {
    max-height: 40px;
    width: auto;
  }
  
  .mobile-order-btn {
    display: inline-block;
    margin-left: auto;
    margin-right: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .hamburger {
    margin-left: 8px;
  }
  
  .banner-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px 20px;
  }
  
  .banner-overlay h2 {
    font-size: 1.4rem;
  }
  
  .banner-overlay p {
    font-size: 0.95rem;
  }
  
  .banner-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badge {
    font-size: 0.8rem;
  }
  
  .banner {
    border-radius: 8px;
  }
  
  .banner video {
    border-radius: 8px;
  }
  
  .video-container {
    max-width: 100%;
    margin: 30px auto;
  }
  
  .sticky-actions {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .sticky-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  header {
    padding: 8px 12px;
  }
  
  header .brand img {
    max-height: 35px;
  }
  
  .mobile-order-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .hamburger {
    margin-left: 6px;
  }
}

