@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter&display=swap');

:root {
  --primary: #c59d5f;
  --secondary: #e0c281;
  --accent: #f8f1e7;
  --light-bg: #fffaf5;
  --text: #2a2a2a;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: var(--primary);
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background-color: var(--light-bg);
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}
.tagline {
  font-size: 1.3rem;
  margin: 1rem 0;
}
.credit {
  font-size: 1rem;
  color: #666;
}

/* Glass Section */
.glass-section {
  background: var(--accent);
  padding: 4rem 2rem;
  border-radius: 12px;
  max-width: 1100px;
  margin: 3rem auto;
  text-align: left;
}
.glass-section h2 {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  text-align: center;
}
.glass-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Services */
.services-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.services-section h2 {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  width: 240px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.card p {
  font-size: 0.95rem;
}

/* Detailed Services */
.detailed-services {
  background: #fff;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}
.detailed-services h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}
.service-box {
  margin-bottom: 3rem;
}
.service-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-box ul {
  padding-left: 1.2rem;
}
.service-box li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* Reviews */
.review-section {
  background: var(--accent);
  padding: 4rem 2rem;
  text-align: center;
}
.review-section h2 {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}
.carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: auto;
}
.review {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow);
  border-radius: 10px;
}
.review span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #555;
}

/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #444;
  line-height: 1.5;
}

.contact-box {
  max-width: 700px;
  margin: auto;
  background-color: var(--accent);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 2rem;
}

.contact-box p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
  font-size: 1.05rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-box i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-box strong {
  font-weight: 600;
  color: var(--text);
}

.contact-box a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}

.contact-box a:hover {
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact-box p {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Save Contact Button */
.contact-center {
  text-align: center;
  margin: 40px 0;
}
.save-contact-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.save-contact-btn:hover {
  background: var(--secondary);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 25px;
  padding: 18px 20px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1ebe5b;
}
.whatsapp-float i {
  display: block;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1.2rem;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .carousel {
    flex-direction: column;
  }
  .navbar .nav-links {
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    display: none;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
