/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  background: #fffcf9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Navbar ===== */
.navbar {
  background: linear-gradient(135deg, #ff6b9d, #c44dff);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 15px rgba(196, 77, 255, 0.2);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.navbar .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.navbar .logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.navbar nav ul {
  display: flex;
  gap: 6px;
}

.navbar nav ul li a {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
  font-size: 0.95rem;
}

.navbar nav ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.navbar nav ul li a.active {
  color: #c44dff;
  background: #fff;
  font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, #fff0f5, #f0e6ff, #e6f7ff);
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 107, 157, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 77, 255, 0.06);
}

.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #ff6b9d, #c44dff, #4da6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.12rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.hero .logo-large {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 4px solid #ff6b9d;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.25);
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b9d, #c44dff);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196, 77, 255, 0.35);
}

/* ===== Section Styles ===== */
.section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 50px;
  font-size: 1rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(196, 77, 255, 0.12);
}

.service-card .card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px 22px 28px;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -42px auto 14px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(1) .icon { background: #ff6b9d; color: #fff; }
.service-card:nth-child(2) .icon { background: #4da6ff; color: #fff; }
.service-card:nth-child(3) .icon { background: #ffc64d; color: #fff; }
.service-card:nth-child(4) .icon { background: #4dd89a; color: #fff; }
.service-card:nth-child(5) .icon { background: #c44dff; color: #fff; }
.service-card:nth-child(6) .icon { background: #ff8c42; color: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-card p {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Gallery Strip ===== */
.gallery-strip {
  padding: 50px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-strip h2 {
  text-align: center;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 30px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

/* ===== About Page ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-text h2 span {
  background: linear-gradient(135deg, #ff6b9d, #c44dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: #666;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-image img {
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
  border: 3px solid #ffcfe0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.value-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(196, 77, 255, 0.1);
}

.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
}

.value-card:nth-child(1) .icon { background: #ffe0ea; color: #ff4081; }
.value-card:nth-child(2) .icon { background: #e0f0ff; color: #2196f3; }
.value-card:nth-child(3) .icon { background: #e0ffe8; color: #4caf50; }
.value-card:nth-child(4) .icon { background: #f0e0ff; color: #9c27b0; }

.value-card h4 {
  color: #3a3a3a;
  margin-bottom: 8px;
  font-weight: 600;
}

.value-card p {
  color: #888;
  font-size: 0.9rem;
}

/* ===== Photo Collage ===== */
.photo-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.photo-collage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.photo-collage img:hover {
  transform: scale(1.03);
}

/* ===== Owner Info ===== */
.owner-section {
  background: linear-gradient(135deg, #fff0f5, #f0e6ff);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-top: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.08);
}

.owner-section .owner-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #ff6b9d, #c44dff);
  color: #fff;
  font-size: 1.4rem;
}

.owner-section h3 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 4px;
  font-weight: 700;
}

.owner-section .owner-title {
  color: #c44dff;
  font-weight: 600;
  margin-bottom: 14px;
}

.owner-section .owner-desc {
  color: #777;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item:nth-child(1) .icon { background: #ffe0ea; color: #ff4081; }
.contact-item:nth-child(2) .icon { background: #e0f0ff; color: #2196f3; }
.contact-item:nth-child(3) .icon { background: #fff3e0; color: #ff9800; }
.contact-item:nth-child(4) .icon { background: #e0ffe8; color: #4caf50; }

.contact-item h4 {
  color: #3a3a3a;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item p {
  color: #777;
  font-size: 0.93rem;
}

.contact-form {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: none;
}

.contact-form h3 {
  color: #3a3a3a;
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
  font-size: 0.88rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c44dff;
  box-shadow: 0 0 0 3px rgba(196, 77, 255, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
}

/* ===== Map ===== */
.map-section {
  margin-top: 50px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, #2d2d3a, #3a2d4a);
  color: #bbb;
  text-align: center;
  padding: 36px 20px;
  margin-top: 60px;
}

.footer p {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer .footer-links a {
  color: #ff9dc5;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer .footer-links a:hover {
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 12px 20px;
    gap: 8px;
  }

  .navbar nav ul {
    gap: 4px;
  }

  .navbar nav ul li a {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 50px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero .logo-large {
    width: 140px;
    height: 140px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-collage {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    padding: 40px 20px;
  }
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
  }

  .navbar {
    position: sticky;
    top: 0;
    align-items: flex-start;
  }

  .navbar nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    padding-bottom: 8px;
  }

  .navbar nav ul.nav-open {
    display: flex;
  }

  .navbar nav {
    width: 100%;
  }
}

/* ===== Navbar Scroll Effect ===== */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.25);
}

/* ===== Scroll Reveal Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #c44dff);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(196, 77, 255, 0.3);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 77, 255, 0.4);
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  max-width: 90%;
}

.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-success {
  background: linear-gradient(135deg, #e8fbe8, #f0fff0);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.toast-error {
  background: linear-gradient(135deg, #ffeaea, #fff0f0);
  color: #c62828;
  border: 1px solid #ef9a9a;
}
