/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #ffffff;
  line-height: 1.6;
}

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

.section-title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 15px;
  color: #e9c46a;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(15, 32, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-section img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h2 {
  font-size: 1.5rem;
  color: #e9c46a;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.logo-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.navbar nav {
  display: flex;
  gap: 30px;
}

.navbar nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar nav a:hover {
  color: #e9c46a;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e9c46a;
  transition: width 0.3s ease;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(44, 83, 100, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.mirror-text {
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.mirror-text::after {
  content: "Sharda Smiles";
  display: block;
  transform: scaleY(-1);
  opacity: 0.15;
  margin-top: -20px;
}

.tagline {
  font-size: 1.5rem;
  color: #e9c46a;
  font-style: italic;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.6);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.03);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  color: #e9c46a;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #e76f51;
  border-radius: 50%;
  color: white;
  font-weight: bold;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 0;
}

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

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(233, 196, 106, 0.3);
}

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

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

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

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.5rem;
  color: #e9c46a;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.03);
}

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

.review {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.review p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 15px;
}

.review h4 {
  text-align: right;
  color: #e9c46a;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 100px 0;
}

.contact-content {
  margin-top: 40px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.contact-item h3 {
  font-size: 1.5rem;
  color: #e9c46a;
  margin-bottom: 15px;
}

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #e9c46a;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .tagline {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 15px 20px;
  }

  .navbar nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mirror-text {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    max-width: 100%;
  }

  .cards,
  .review-cards,
  .contact-info {
    grid-template-columns: 1fr;
  }
}