/* Base Styles */
:root {
  --primary-color: #d04275;
  --secondary-color: #f1e2e9;
  --dark-color: #3d3c40;
  --pink-light: #f7c6b3;
  --pink-gradient: linear-gradient(135deg, #f1af9d, #e1929e);
  --font-primary: 'Work Sans', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-heading: 'Rozha One', serif;
  --font-poppins: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--dark-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--secondary-color);
}

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

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.primary-btn:hover {
  background-color: #b93b65;
  color: white;
}

.secondary-btn {
  background-color: #f1e2e9;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Header Styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
}

.nav-menu > li {
  position: relative;
  margin-left: 20px;
}

.nav-menu > li > a {
  font-weight: 500;
  padding: 10px 0;
  font-size: 14px;
}

.nav-menu > li > a.active {
  color: var(--primary-color);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin-bottom: 4px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  background: url('/src/images/hero-bg.jpg') no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

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

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 5;
}

.slider-prev,
.slider-next {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0 15px;
}

.slider-dots {
  display: flex;
  margin: 0 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
}

/* Location Section */
.location-section {
  background-color: var(--secondary-color);
  padding: 30px 0;
}

.location-title {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.location-info h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.location-info p {
  margin-bottom: 5px;
  line-height: 1.4;
}

.location-info a {
  color: var(--primary-color);
}

/* Chat Button */
.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
}

.chat-with-us {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(208, 66, 117, 0.4);
  transition: all 0.3s ease;
}

.chat-with-us:hover {
  background-color: #b93b65;
  color: white;
  transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background-color: white;
}

.features-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}

.feature-image {
  flex: 0 0 300px;
}

.features-circle {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--pink-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item {
  position: absolute;
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 30px;
  color: white;
  text-align: center;
  box-shadow: 0 5px 15px rgba(208, 66, 117, 0.3);
  padding: 0 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-item h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.feature-item.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.feature-item.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
}

.feature-item.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}

.feature-item.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.feature-item.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-item.top-right {
  top: 25%;
  right: 10%;
}

/* Electrolysis Applied Section */
.electrolysis-applied-section {
  padding: 80px 0;
  background: var(--pink-gradient);
}

.electrolysis-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.electrolysis-content h2 {
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.electrolysis-content p {
  margin-bottom: 30px;
  color: var(--dark-color);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.works-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.works-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: var(--pink-light);
  border-radius: 10px;
}

.works-content h3 {
  color: var(--dark-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.works-video {
  flex: 1;
  min-width: 300px;
}

.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(208, 66, 117, 0.5);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #b93b65;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.client-name {
  text-align: right;
  font-family: var(--font-poppins);
  color: var(--primary-color);
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding: 80px 0 30px;
  position: relative;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-info {
  flex: 1;
  min-width: 300px;
}

.footer-info p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #b93b65;
  transform: scale(1.1);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--dark-color);
  transition: all 0.3s ease;
}

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

.location-block {
  margin-bottom: 30px;
}

.location-block h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.location-block p {
  margin-bottom: 5px;
  font-size: 14px;
}

.location-block a {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  margin-bottom: 0;
}

.footer-bottom-links a {
  margin-left: 10px;
  font-size: 14px;
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn.contact-us {
  background-color: var(--primary-color);
  width: auto;
  height: auto;
  padding: 10px 20px;
  border-radius: 25px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  cursor: pointer;
  font-weight: 600;
}

.float-btn.whatsapp {
  background-color: #25D366;
}

.float-btn.phone {
  background-color: #007bff;
}

.float-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.float-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Page Header Styles */
.page-header {
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.page-title {
  position: relative;
  font-size: 60px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* About Page Styles */
.about-content-section {
  padding: 80px 0;
  background-color: white;
}

.about-main-content {
  max-width: 900px;
  margin: 0 auto 50px;
}

.about-main-content h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 20px;
  text-align: center;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-image {
  width: 40%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transform-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.transform-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.transform-image {
  flex: 1;
  min-width: 300px;
}

.transform-image img {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transform-content {
  flex: 1;
  min-width: 300px;
}

.transform-content h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.our-center-section {
  padding: 80px 0;
  background-color: white;
}

.center-areas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.center-area {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background: var(--pink-gradient);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.center-area:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.center-area h3 {
  color: white;
  font-size: 24px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-content {
    position: relative;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

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

  .nav-menu > li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 300px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .features-circle {
    width: 300px;
    height: 300px;
  }

  .feature-item {
    width: 120px;
    height: 50px;
  }

  .feature-item h4 {
    font-size: 12px;
  }

  .page-title {
    font-size: 40px;
  }

  .about-main-content h3 {
    font-size: 24px;
  }

  .transform-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .works-wrapper,
  .testimonials-wrapper,
  .footer-top,
  .footer-links,
  .location-wrapper,
  .transform-wrapper,
  .center-areas {
    flex-direction: column;
  }

  .features-circle {
    width: 250px;
    height: 250px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 10px;
  }

  .feature-item {
    width: 100px;
    height: 45px;
    font-size: 11px;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-title {
    font-size: 32px;
  }

  .about-main-content h3 {
    font-size: 20px;
  }

  .transform-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-circle {
    width: 220px;
    height: 220px;
  }

  .feature-item {
    width: 90px;
    height: 40px;
  }

  .feature-item h4 {
    font-size: 10px;
  }

  .page-title {
    font-size: 28px;
  }

  .center-area {
    min-width: 100%;
  }
}
