/* Massage Home Page Styles - Based on adanamasajsalonuspa.com */
.massage-home-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.massage-home-page * {
  box-sizing: border-box;
}

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

/* Header */
.massage-header {
  background: #1e293b;
  color: white;
  width: 100%;
}

.header-above {
  background: #0f172a;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-above-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-above-left {
  flex: 1;
}

.header-above-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-above-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.3s;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon.facebook { color: #557dbc; }
.social-icon.twitter { color: #7acdee; }
.social-icon.instagram { color: #8a3ab9; }
.social-icon.tiktok { color: #1B64F6; }

.social-icon:hover {
  opacity: 0.8;
}

.top-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.top-menu a:hover {
  opacity: 0.8;
}

.header-main {
  padding: 20px 0;
  background: #1e293b;
}

.header-main-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: auto;
  max-width: 250px;
}

.header-below {
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
}

.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-menu > a,
.main-menu > .menu-item-has-children > a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.main-menu > a:hover,
.main-menu > .menu-item-has-children > a:hover {
  color: #fbbf24;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.sub-menu a:hover {
  background: #f3f4f6;
  color: #1e293b;
}

/* Hero Slider */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-pagination button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-pagination button.active {
  background: white;
}

/* Divider */
.divider-section {
  padding: 20px 0;
  background: white;
}

.divider-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Three Columns */
.three-columns-section {
  padding: 60px 0;
  background: white;
}

.three-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.column-item {
  text-align: center;
}

.column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

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

.column-item h2 {
  font-size: 28px;
  margin: 0;
  color: #1e293b;
  font-weight: 600;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 10px 0;
  color: #1e293b;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  margin: 0 0 40px 0;
  color: #64748b;
  font-weight: 400;
}

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

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-card h4 {
  font-size: 22px;
  margin: 0 0 15px 0;
  color: #1e293b;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Popular Services */
.popular-services-section {
  padding: 60px 0;
  background: white;
}

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

.popular-service-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.popular-service-card:hover {
  border-color: #fbbf24;
  transform: translateY(-3px);
}

.popular-service-card h4 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #1e293b;
  font-weight: 600;
}

.popular-service-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Campaigns */
.campaigns-section {
  padding: 60px 0;
  background: #f8f9fa;
}

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

.campaign-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-top: 4px solid #fbbf24;
}

.campaign-card h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #1e293b;
  font-weight: 600;
}

.campaign-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.campaign-features li {
  padding: 8px 0;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.campaign-features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 20px 0;
}

.about-content strong {
  color: #1e293b;
  font-weight: 600;
}

/* Footer */
.massage-footer {
  background: #1e293b;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-above-content {
    flex-direction: column;
    gap: 15px;
  }

  .header-above-left,
  .header-above-center,
  .header-above-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .top-menu {
    justify-content: center;
  }

  .main-menu {
    flex-direction: column;
    gap: 15px;
  }

  .sub-menu {
    position: static;
    display: block;
    background: #1e293b;
    margin-top: 10px;
  }

  .sub-menu a {
    color: white;
  }

  .hero-slider-section {
    height: 300px;
  }

  .three-columns-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .popular-services-grid,
  .campaigns-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}
