@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Dancing+Script:wght@500&display=swap');

/* Base Styles & Design Tokens */
:root {
  --primary-mint: #AED8D1;
  --light-mint: #D3FAED;
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-soft: #666666;
  --accent-script: #8ba9a4;
  --transition-slow: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Scroll Reveal Effects */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

.script-font {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--accent-script);
}

/* Navbar Customization */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark) !important;
}

.nav-link {
  color: var(--text-soft) !important;
  font-weight: 400;
  margin-left: 25px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.nav-link:hover {
  color: var(--primary-mint) !important;
}

/* Slider Styles */
#banner-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background-color: #f9f9f9;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.3) 100%);
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.logo-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  padding: 50px 80px;
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: logoEntrance 1.5s ease-out;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#logoSlider {
  max-width: 260px;
  display: block;
  margin: 0 auto 15px;
}

.logo-sub {
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 6px;
  margin-top: 15px;
  text-transform: uppercase;
}

/* Services & Pricing Sections */
section {
  padding: 120px 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card {
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(174, 216, 209, 0.15);
}

.service-card h5 {
  color: var(--primary-mint);
  margin-bottom: 20px;
}

/* Pricing Section Custom */
#pricing {
  background-color: #fcfcfc;
}

.pricing-card {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(174, 216, 209, 0.2);
  height: 100%;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary-mint);
  box-shadow: 0 20px 40px rgba(174, 216, 209, 0.1);
}

.category-title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--text-dark);
  border-left: 4px solid var(--primary-mint);
  padding-left: 15px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f9f9f9;
  padding: 12px 0;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.pricing-item:hover {
  background: #fcfcfc;
  padding-left: 5px;
}

.pricing-subtext {
  font-size: 0.8rem;
  color: var(--accent-script);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 15px;
  padding-left: 0;
}

.pricing-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.card-img-top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.card-img-top:hover img {
  opacity: 1;
}

.price {
  font-weight: 600;
  color: var(--primary-mint);
  white-space: nowrap;
}

/* Gallery Section */
#gallery {
  background-color: var(--bg-white);
}

.image-layout {
  display: flex;
  gap: 30px;
  padding: 20px;
}

.image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(174, 216, 209, 0.2);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Modal (Popup) Styles */
#imageModal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#imageModal.show {
  display: flex;
  opacity: 1;
}

.modal-content-container img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Footer & Other */
footer {
  background-color: #f7f7f7 !important;
  color: var(--text-soft) !important;
  padding: 60px 0 !important;
  border-top: 1px solid #eee;
}

.form-control {
  border-radius: 0;
  border: 1px solid #eee;
  padding: 15px;
}

.btn-primary {
  background-color: var(--primary-mint);
  border: none;
  padding: 15px 50px;
  border-radius: 0;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--accent-script);
}

@media (max-width: 768px) {
  .image-layout {
    flex-direction: column;
  }

  .logo-box {
    padding: 40px;
  }

  #banner-slider {
    height: 60vh;
  }
}