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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s, color 0.3s;
  padding-top: 0;
}

body.dark-mode {
  background-color: #121212;
  color: #eee;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.dark-mode header {
  background-color: #1f1f1f;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.navbar-company {
  font-weight: bold;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a,
.dropdown a,
.quote-btn,
#darkModeToggle {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
}

.quote-btn {
  background-color: rgb(255, 127, 6);
  font-weight: bold;
}

.quote-btn:hover {
  background-color: rgb(72, 204, 11);
  color: #fff;
}

#darkModeToggle {
  background: none;
  border: none;
  padding: 4px;
  border-radius: 0;
  outline: none;
  font-size: 1.2rem;
}

#darkModeToggle:hover {
  background: none;
  opacity: 0.7;
}

#darkModeToggle:focus {
  outline: none;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 0px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  height: auto;
  min-height: 46px;
}

.social-btn:hover {
  opacity: 0.7;
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(7, 192, 7);
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  min-width: 200px;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 5px 10px;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ff7b00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.flag-dropdown {
  margin-left: 100px;
}

.flag-dropdown img {
  width: 24px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#hamburger:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

body.dark-mode #hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#hamburger span {
  height: 4px;
  width: 25px;
  background-color: #000;
  transition: all 0.3s;
}

body.dark-mode #hamburger span {
  background-color: #fff;
}

/* HERO SLIDESHOW */
.hero-slideshow {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 60px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background: linear-gradient(to right, #e9ffe9, #fefae0);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Individual slide backgrounds */
.hero-slide[data-slide="0"] {
  background-image: linear-gradient(rgba(233, 255, 233, 0.3), rgba(254, 250, 224, 0.3)), url('../images/hero/hero-industrial-cutters.jpg');
}

.hero-slide[data-slide="1"] {
  background-image: linear-gradient(rgba(233, 255, 233, 0.3), rgba(254, 250, 224, 0.3)), url('../images/hero/hero-electronics.jpg');
}

.hero-slide[data-slide="2"] {
  background-image: linear-gradient(rgba(233, 255, 233, 0.3), rgba(254, 250, 224, 0.3)), url('../images/hero/hero-mobile-accessories.jpg');
}

.hero-slide[data-slide="3"] {
  background-image: linear-gradient(rgba(233, 255, 233, 0.3), rgba(254, 250, 224, 0.3)), url('../images/hero/hero-baby-garments.jpg');
}

.hero-slide[data-slide="4"] {
  background-image: linear-gradient(rgba(233, 255, 233, 0.3), rgba(254, 250, 224, 0.3)), url('../images/hero/hero-himalayan-salt.jpg');
}

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

/* Dark mode slide backgrounds */
body.dark-mode .hero-slide[data-slide="0"] {
  background-image: linear-gradient(rgba(44, 44, 44, 0.5), rgba(59, 59, 59, 0.5)), url('../images/hero/hero-industrial-cutters.jpg');
}

body.dark-mode .hero-slide[data-slide="1"] {
  background-image: linear-gradient(rgba(44, 44, 44, 0.5), rgba(59, 59, 59, 0.5)), url('../images/hero/hero-electronics.jpg');
}

body.dark-mode .hero-slide[data-slide="2"] {
  background-image: linear-gradient(rgba(44, 44, 44, 0.5), rgba(59, 59, 59, 0.5)), url('../images/hero/hero-mobile-accessories.jpg');
}

body.dark-mode .hero-slide[data-slide="3"] {
  background-image: linear-gradient(rgba(44, 44, 44, 0.5), rgba(59, 59, 59, 0.5)), url('../images/hero/hero-baby-garments.jpg');
}

body.dark-mode .hero-slide[data-slide="4"] {
  background-image: linear-gradient(rgba(44, 44, 44, 0.5), rgba(59, 59, 59, 0.5)), url('../images/hero/hero-himalayan-salt.jpg');
}

.hero-content {
  width: 100%;
  padding: 0 50px 0 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-text {
  max-width: 480px;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

body.dark-mode .hero-text {
  background: rgba(0, 0, 0, 0.8);
}

.hero-text h1 {
  font-size: 3rem;
  color: #008000;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #333;
}

body.dark-mode .hero-text p {
  color: #ddd;
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

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

.indicator.active {
  background-color: #008000;
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  background-color: green;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

.cta-btn:hover {
  background-color: rgb(245, 73, 5);
}

/* SECTION */
.section {
  padding: 100px 80px;
  max-width: 1320px;
  margin: auto;
  text-align: center;
}

.section h2 {
  color: #007b2e;
  margin-bottom: 20px;
}

.features-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.features-list li {
  margin-bottom: 10px;
}

/* SERVICES SECTION */
.services-section {
  background-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 128, 0, 0.1);
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: #008000;
}

body.dark-mode .service-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .service-card:hover {
  border-color: #00a000;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  padding: 15px;
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .service-icon {
  background: linear-gradient(135deg, #2d3d2d, #3a4a3a);
}

.service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #008000;
  margin-bottom: 15px;
  font-weight: 600;
}

body.dark-mode .service-card h3 {
  color: #00c000;
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

body.dark-mode .service-card p {
  color: #bbb;
}

/* PRODUCTS SECTION */
.products-section {
  background-color: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: #008000;
}

body.dark-mode .product-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .product-card:hover {
  border-color: #00a000;
}

.product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-content {
  padding: 30px 25px;
}

.product-content h3 {
  font-size: 1.4rem;
  color: #008000;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

body.dark-mode .product-content h3 {
  color: #00c000;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

body.dark-mode .product-content p {
  color: #bbb;
}

/* WHY CHOOSE EAST & WEST SECTION */
.why-choose-section {
  background: linear-gradient(135deg, #f8fdf8, #f3f8f3);
  border-top: 1px solid rgba(0, 128, 0, 0.1);
  border-bottom: 1px solid rgba(0, 128, 0, 0.1);
}

body.dark-mode .why-choose-section {
  background: linear-gradient(135deg, #1a2a1a, #1f2f1f);
  border-color: rgba(0, 200, 0, 0.2);
}

.why-choose-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-section h2 {
  color: #008000;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

body.dark-mode .why-choose-section h2 {
  color: #00d000;
}

.why-choose-text {
  text-align: left;
}

.why-choose-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.why-choose-text p:last-child {
  margin-bottom: 0;
}

body.dark-mode .why-choose-text p {
  color: #ccc;
}

/* LET'S WORK TOGETHER SECTION */
.work-together-section {
  background: linear-gradient(135deg, #008000, #006600);
  color: white;
  text-align: center;
}

.work-together-content {
  max-width: 900px;
  margin: 0 auto;
}

.work-together-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.work-together-text {
  text-align: center;
  margin-bottom: 40px;
}

.work-together-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.work-together-text p:last-child {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #fff;
}

.work-together-cta {
  margin-top: 40px;
}

.cta-btn-large {
  display: inline-block;
  background-color: white;
  color: #008000;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn-large:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 0.5rem;
  }

  body.dark-mode .nav-links {
    background: #1f1f1f;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropdown a,
  .quote-btn,
  #darkModeToggle {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    text-align: left;
  }

  body.dark-mode .nav-links a,
  body.dark-mode .dropdown a {
    border-bottom: 1px solid #333;
  }

  #hamburger {
    display: flex;
    z-index: 1000;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    background: #e8e8e8;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }

  body.dark-mode .dropdown-content {
    background: #2a2a2a;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 10px 25px;
    border-bottom: 1px solid #d0d0d0;
  }

  body.dark-mode .dropdown-content a {
    border-bottom: 1px solid #444;
  }

  .navbar-company {
    font-size: 0.9rem;
  }

  .flag-dropdown {
    margin-left: 0;
  }

  .flag-dropdown img {
    width: 16px;
  }

  .social-btn {
    padding: 10px 12px;
    min-height: 40px;
  }

  .social-btn img {
    width: 22px;
    height: 22px;
  }

  #darkModeToggle {
    border-bottom: none;
    justify-self: flex-start;
  }

  .hero-slideshow {
    height: 60vh;
    min-height: 500px;
    margin-top: 50px;
  }

  .hero-content {
    padding: 0 20px 0 30px;
  }

  .hero-text {
    padding: 12px;
    max-width: 350px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-indicators {
    bottom: 20px;
  }

  .section {
    padding: 60px 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    padding: 30px 20px;
    min-height: 200px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .product-image {
    height: 220px;
  }

  .product-content {
    padding: 25px 20px;
  }

  .product-content h3 {
    font-size: 1.2rem;
  }

  .product-content p {
    font-size: 0.95rem;
  }

  .why-choose-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .why-choose-text p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .work-together-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .work-together-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .work-together-text p:last-child {
    font-size: 1.1rem;
  }

  .cta-btn-large {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-company {
    font-size: 1rem;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a,
  .dropdown a,
  .quote-btn,
  #darkModeToggle {
    font-size: 0.9rem;
    padding: 5px 8px;
  }

  .hero-content {
    padding: 0 50px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 80px 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-card {
    padding: 35px 20px;
    min-height: 250px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .product-image {
    height: 240px;
  }

  .product-content {
    padding: 25px 20px;
  }

  .product-content h3 {
    font-size: 1.25rem;
  }

  .product-content p {
    font-size: 0.95rem;
  }

  .why-choose-section h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .why-choose-text p {
    font-size: 1.05rem;
    text-align: left;
    margin-bottom: 22px;
  }

  .work-together-section h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .work-together-text p {
    font-size: 1.05rem;
    margin-bottom: 22px;
  }

  .work-together-text p:last-child {
    font-size: 1.15rem;
  }

  .cta-btn-large {
    padding: 16px 35px;
    font-size: 1.05rem;
  }
}

/* ============= FOOTER STYLES ============= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  background-color: #404040 !important;
  color: #ffffff;
  margin-top: 60px;
  width: 100%;
  clear: both;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #28a745;
}

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

/* Footer Top - Brand and Menu */
.footer-top {
  border-bottom: 1px solid #333;
  padding: 30px 0;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
}

.footer-menu {
  display: flex;
  justify-content: left;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #cccccc;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  background-color: #09d413;
  color: #ffffff;
}

/* Footer Main Content */
.footer-main {
  padding: 20px 0;
  border-bottom: 1px solid #181515;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-section a {
  color: #58e408;
}

.footer-section a:hover {
  color: #1e7e34;
}

/* Phone Numbers in Footer */
.phone-numbers-footer {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-item-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.phone-icon-footer {
  font-size: 0.8rem;
  color: #28a745;
}

.phone-number-footer {
  color: #0ceb0c;
}

/* Square Social Media Icons */
.social-icons-square {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.social-square-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-square-footer.facebook {
  background-color: #1877f2;
  color: white;
}

.social-square-footer.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-square-footer.whatsapp {
  background-color: #25d366;
  color: white;
}

.social-square-footer.wechat {
  background-color: #00c800;
  color: white;
}

.social-square-footer:hover {
  background-color: #28a745 !important;
  transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-align: center;
}

.social-icons a:hover {
  background-color: #28a745;
  transform: translateY(-2px);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.social-icons a:hover img {
  filter: brightness(0) invert(1);
}

/* Footer Map */
.footer-map {
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.footer-map iframe {
  border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
  margin: 0;
  font-size: 0.9rem;
}

.footer-terms {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.terms-link {
  color: #999999;
  font-size: 0.8rem;
  text-decoration: underline;
}

.terms-link:hover {
  color: #cccccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    background-color: #404040 !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
  
  .footer-menu {
    gap: 15px;
  }
  
  .footer-menu a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-terms {
    justify-content: center;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  .phone-numbers-footer {
    gap: 6px;
  }
  
  .phone-item-footer {
    font-size: 0.8rem;
  }
  
  .social-icons-square {
    justify-content: flex-start;
    gap: 12px;
  }
  
  .social-square-footer {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* ============= MODAL STYLES ============= */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffffff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  max-width: 90%;
  text-align: center;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

.qr-img {
  max-width: 200px;
  height: auto;
  margin: 10px 0;
}

/* ============= TERMS PAGE STYLES ============= */
.terms-page h2 {
  color: #28a745;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #28a745;
  padding-bottom: 5px;
}

.terms-page p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.terms-page ul {
  margin: 15px 0;
  padding-left: 25px;
}

.terms-page li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.terms-page a {
  color: #28a745;
  text-decoration: none;
}

.terms-page a:hover {
  color: #1e7e34;
  text-decoration: underline;
}

/* ============= RESPONSIVE STYLES ============= */
@media (max-width: 768px) {
  .terms-page {
    margin-top: 80px !important;
    padding: 20px 10px !important;
  }
  
  .terms-content {
    padding: 20px !important;
  }
  
  .terms-page h1 {
    font-size: 1.8rem !important;
  }
  
  .terms-page h2 {
    font-size: 1.3rem;
  }
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-number {
  font-size: 14px;
  color: #25D366; /* WhatsApp green */
  font-weight: bold;
  white-space: nowrap;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-number {
  font-size: 14px;
  color: rgb(55, 218, 6); /* WhatsApp green */
  font-weight: bold;
  white-space: nowrap;
}

/* ✅ Hide WhatsApp number on screens smaller than 768px (mobile) */
@media (max-width: 768px) {
  .whatsapp-number {
    display: none;
  }
}
.hero-text {
  background-color: transparent !important;
}
@media screen and (max-width: 768px) {
  .hero-text,
  .hero-text h1,
  .hero-text p {
    background-color: transparent !important;
  }
}
@media screen and (max-width: 768px) {
  .hero-content {
    position: relative;
  }

  .hero-text {
    position: absolute;
    bottom: 60px; /* keep space for indicators */
    left: 20px;
    padding: 10px;
    max-width: 90%;
    background: transparent !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
    padding: 0;
  }

  header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-slideshow {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 60px; /* Adjust as needed to sit above indicators */
    left: 20px;
    width: auto;
    z-index: 2;
  }

  .hero-text {
    max-width: 90%;
    padding: 10px 15px;
  }

  .hero-text h1,
  .hero-text p {
    color: #fff; /* Ensure text is readable on hero background */
  }

  .hero-slideshow {
    position: relative;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .hero-text {
    position: absolute;
    bottom: 10px; /* moved closer to the indicators */
    left: 20px;
    background: none !important;
    padding: 0 !important;
    max-width: none;
    width: auto;
  }

  .hero-text h1 {
    font-size: 1.7rem; /* 20% smaller than before */
    color: #000000; /* Black text */
    font-weight: bold;
    margin: 0;
  }

  .hero-text p,
  .hero-text .cta-btn {
    display: none !important; /* Hides paragraph and button */
  }
}
/* Show only on mobile */
@media screen and (max-width: 768px) {
  .mobile-floating-social {
    position: fixed;
    bottom: 80px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }

  .mobile-floating-social a {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-floating-social a img {
    width: 24px;
    height: 24px;
  }
}

/* Hide on desktop */
@media screen and (min-width: 769px) {
  .mobile-floating-social {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mobile-floating-social {
    position: fixed;
    bottom: 80px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }

  .mobile-floating-social a {
    display: inline-block;
    width: 48px;
    height: 48px;
  }

  .mobile-floating-social a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .mobile-floating-social {
    display: none;
  }
}
