:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --cream: #F5F5DC;
    --gray: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    justify-content: center;
    list-style: none;
}
.nav-container li { margin: 0 20px; position: relative; }
.nav {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav:hover { color: var(--gold); }
.nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0; left: 0;
    transition: width 0.3s ease;
}
.nav:hover::after { width: 100%; }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; padding: 0 20px;
}
.hero h1 {
    font-size: 5rem; color: var(--gold);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.hero h2 { font-size: 2rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: auto; }
.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: 0.3s;
}
.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

/* Services */
.services-section { padding: 100px 5%; background: var(--light); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: ''; position: absolute; width: 50%; height: 3px;
    background: var(--gold); bottom: -10px; left: 25%;
}
/* Packages Section */
.packages-section {
  padding: 80px 5%;
  background: var(--light);
}

.packages-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.packages-section .section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
}

.packages-section .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
}

.packages-section .section-title p {
  color: #555;
  font-size: 1.1rem;
}

/* Container grid */
.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

/* Package Cards */
.package-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  text-align: left;
  border-top: 5px solid var(--gold);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Title */
.package-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
  text-align: center;
}

/* Price Highlight */
.package-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

/* List Styling */
.package-card ul {
  list-style: none;
  padding-left: 0;
}

.package-card ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray);
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}


/* Feedback Section Styling */
.feedback-section {
    background: #f8f9fa;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    border-top: 4px solid #D4AF37;
  }

  .feedback-section h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .feedback-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .feedback-form {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
  }

  .feedback-form label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #333;
  }

  .feedback-form input,
  .feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
  }

  .feedback-form input:focus,
  .feedback-form textarea:focus {
    border-color: #ff4081;
    outline: none;
  }

  .feedback-form button {
    display: block;
    margin: 0 auto;
    background-color: rgb(65, 56, 59);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .feedback-form button:hover {
    background-color: #D4AF37;
  }

  /* Success/Error Messages */
  .feedback-section p[style*="green"] {
    background: #e8f5e9;
    padding: 10px;
    border-radius: 6px;
    color: #2e7d32;
    font-weight: bold;
  }

  .feedback-section p[style*="red"] {
    background: #ffebee;
    padding: 10px;
    border-radius: 6px;
    color: #c62828;
    font-weight: bold;
  }

  /* Star Rating */
  .star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
  }

  .star-rating input {
    display: none;
  }

  .star-rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
  }

  .star-rating input:checked~label,
  .star-rating label:hover,
  .star-rating label:hover~label {
    color: #FFD700;
  }

  /* Footer */
  .custom-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 5% 30px;
    text-align: center;
  }
 
