/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #111;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 35px;
  height: auto;
}

.logo h1 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c8a45d;
}

.btn-appointment {
  background: #c8a45d;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  background: #b38c45;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
              url('IMAGES/background1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: #fff;
}

.hero-content {
  max-width: 600px;
}

.tagline {
  color: #c8a45d;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #eee;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 2rem;
}

.hero-btn {
  background: #c8a45d;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #b38c45;
}

/* === SERVICES SECTION === */
.services {
  background-color: #faf7f2;
  text-align: center;
  padding: 100px 20px;
}

.services .section-tagline {
  color: #b89b5e;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services .section-title {
  font-size: 2.8rem;
  font-family: 'Montserrat', serif;
  color: #111;
  margin-bottom: 10px;
}

.services .section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(42%) sepia(57%) saturate(438%) hue-rotate(20deg) brightness(96%) contrast(89%);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === PRICING SECTION === */
.pricing {
  background-color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.pricing .section-tagline {
  color: #b89b5e;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing .section-title {
  font-size: 2.8rem;
  font-family: 'Montserrat', serif;
  color: #111;
  margin-bottom: 10px;
}

.pricing .section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.pricing-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 25px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.pricing-header::after {
  content: "";
  position: absolute;
  left: 120px;
  right: 80px;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(to right, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
  transform: translateY(-50%);
}

.pricing-header h3 {
  font-size: 1.2rem;
  color: #111;
  font-weight: 600;
}

.price {
  color: #111;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === APPOINTMENT SECTION === */
.appointment-section {
  width: 100%;
  background: url('IMAGES/background2.jpg') center/cover no-repeat;
  background-color: #555;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.appointment-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.appointment-text {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
}

.appointment-text h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #d4af37;
}

.appointment-text h2 {
  font-size: 2.2rem;
  margin: 15px 0;
  color: #fff;
}

.appointment-text p {
  color: #ddd;
}

.appointment-form {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.appointment-form h3 {
  margin-bottom: 20px;
}

.appointment-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.appointment-form input,
.appointment-form select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
}

.appointment-form button {
  background-color: #c9a64e;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.appointment-form button:hover {
  background-color: #b38a34;
}

/* === FOOTER === */
.footer {
  background: #1c1c1c;
  color: #d9c6a5;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.footer-box h2,
.footer-box h3 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-box h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #d9c6a5;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-box p,
.footer-box ul li {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li i {
  margin-right: 10px;
  color: #d9c6a5;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: #3b3b3b;
  padding: 8px;
  border-radius: 5px;
  transition: 0.3s;
}

.socials a:hover {
  background: #d9c6a5;
  color: #1c1c1c;
}

.map-container iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}

/* === CONTACT LINKS === */
.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link i {
  color: #d4af37;
  font-size: 16px;
}

.contact-link:hover {
  color: #d4af37;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 992px) {
  .navbar { height: 70px; padding: 0 4%; }
  .hero { flex-direction: column; justify-content: center; text-align: center; padding: 0 6%; }
  .hero h1 { font-size: 2.3rem; line-height: 1.3; }
  .subtitle { font-size: 0.95rem; }

  .appointment-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .appointment-text,
  .appointment-form {
    max-width: 100%;
  }
  .appointment-text { margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    gap: 1.5rem;
    padding: 2rem;
    width: 200px;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .btn-appointment { display: none; }

  .service-grid,
  .pricing-grid,
  .gallery { grid-template-columns: 1fr; }

  .appointment-section { padding: 60px 20px; }
  .appointment-form { padding: 25px 20px; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
  .services .section-title,
  .pricing .section-title { font-size: 1.8rem; }
  .appointment-text h2 { font-size: 1.6rem; }
  .appointment-form h3 { font-size: 1.1rem; }
  .footer-bottom { font-size: 13px; }
}
