/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #e8c4a0);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.service-info {
  padding: 1.5rem;
}

.service-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
  font-family: "Poppins", sans-serif;
}

.service-info p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-detail-btn {
  background: linear-gradient(135deg, var(--primary-color), #c4955f);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-detail-btn:hover {
  background: linear-gradient(135deg, #c4955f, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 5px;
}

.service-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-button span {
  font-size: 24px;
  font-weight: 300;
  color: var(--secondary-color);
}

.service-card:hover .service-button {
  background: var(--primary-color);
  transform: scale(1.1);
}

.service-card:hover .service-button span {
  color: var(--white);
}

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f6f1 0%, #f6f2ed 100%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 30px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #e8c4a0,
    var(--primary-color)
  );
  border-radius: 30px 30px 0 0;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.salon-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f3e7 0%, #f5f0e4 100%);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
}

.contact h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #e8c4a0);
  border-radius: 2px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #e8c4a0);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  position: relative;
  text-align: center;
}

.info-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.info-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--secondary-color);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

.map-container iframe {
  border-radius: 20px;
}

.map-placeholder {
  background-color: #f0f0f0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 10px;
  font-size: 1.2rem;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f3e9 0%, #f4f1e8 100%);
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
}

.reviews h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #e8c4a0);
  border-radius: 2px;
}

.reviews-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.reviews-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.reviews-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 100%;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #e8c4a0);
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-nav button {
  pointer-events: all;
  background: rgba(139, 69, 19, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-nav button:hover {
  background: #8b4513;
  transform: scale(1.1);
}

.prev-btn {
  margin-left: -25px;
}

.next-btn {
  margin-right: -25px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 69, 19, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(139, 69, 19, 0.6);
  transform: scale(1.1);
}

/* Instagram Section */
.instagram {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.instagram h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
}

.instagram h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e4405f, #f56040, #f77737);
  border-radius: 2px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.insta-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.insta-photo:hover {
  transform: scale(1.05);
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(228, 64, 95, 0.8),
    rgba(245, 96, 64, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-photo:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay span {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.insta-photo:hover .insta-overlay span {
  transform: scale(1);
}

.instagram-cta {
  text-align: center;
}

.insta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #e4405f, #f56040);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.insta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
  background: linear-gradient(45deg, #d63384, #e4405f);
}
