:root {
  --primary: #b76e79;
  /* Rose gold tone */
  --secondary: #f8e5e5;
  /* Light pink */
  --accent: #e3c8c8;
  /* Dusty rose */
  --dark: #4a3f3f;
  /* Dark brown */
  --light: #fff9f9;
  /* Off white */
  --gold: #d4af37;
  /* Gold for accents */
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  font-size: 16px;
}

/* Floating contact bar */
.contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-options {
  display: flex;
  gap: 15px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.contact-option:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-option i {
  font-size: 1rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: white;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}

header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/1.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 140px 20px 80px;
  margin-top: 50px;
  /* Adjust for fixed contact bar */
  position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.tagline {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--secondary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.nav {
  background-color: var(--dark);
  position: sticky;
  top: 52px;
  /* Height of contact bar */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.nav-logo {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
  font-size: 1rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary);
  position: relative;
  font-weight: 700;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  margin: 15px auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: -30px auto 40px;
  color: var(--dark);
  opacity: 0.8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  padding: 40px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

.gallery-item-caption h3 {
  margin: 0 0 5px 0;
  font-family: 'Marcellus', serif;
}

.gallery-item-caption p {
  margin: 0;
  font-size: 0.9rem;
}

.price-calculator {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--light);
  transition: all 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.2);
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  font-size: 1.3rem;
  color: white;
  display: none;
  animation: fadeIn 0.5s;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-image {
  height: 220px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-title {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

.package-price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark);
}

.package-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.package-features li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.package-features i {
  color: var(--gold);
  font-size: 1rem;
}

.package-cta {
  text-align: center;
}

.negotiable-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--primary);
  font-size: 1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.contact-image {
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details {
  background-color: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
  background-color: var(--light);
}

.contact-method:hover {
  background-color: var(--secondary);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-text h3 {
  margin: 0 0 2px 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-text a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-form h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: 'Marcellus', serif;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

footer {
  background: linear-gradient(to right, var(--dark), #2a2323);
  color: white;
  padding: 60px 20px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer-column h3 {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--dark);
  transform: translateY(-5px);
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.popup-form {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  width: 90%;
  max-width: 360px;
  display: none;
  animation: slideInUp 0.5s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.popup-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
}

.close-popup {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  transition: transform 0.3s;
  line-height: 1;
}

.close-popup:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Responsive Styles --- */

/* Large Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-image {
    height: 350px;
    order: -1;
  }

  .packages {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* Tablets and below (up to 768px) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .contact-bar {
    flex-direction: row;
    gap: 8px;
    padding: 10px;
    position: relative;
    /* No longer fixed */
  }

  header {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav {
    top: 0;
    /* Nav sticks to top now */
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 0px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .nav-links.active {
    max-height: 500px;
    /* arbitrary large value */
  }

  .nav-links a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .logo {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .price-calculator {
    padding: 30px;
  }
}

/* Mobile phones (up to 480px) */
@media (max-width: 480px) {
  .contact-options {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .contact-option {
    font-size: 0.8rem;
  }

  header {
    padding: 50px 15px;
  }

  .logo {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 40px;
  }

  .section-title::after {
    width: 80px;
    margin: 10px auto;
  }

  .section-subtitle {
    font-size: 1rem;
    margin: -25px auto 30px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }

  .price-calculator,
  .contact-details {
    padding: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column .social-links,
  .footer-column .footer-links {
    justify-content: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 15px;
    left: 15px;
  }

  .popup-form {
    width: calc(100% - 30px);
    bottom: 15px;
    right: 15px;
    padding: 20px;
  }
}
