/* General Body */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header Styles */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #6a0dad, #ff6f61); /* fun gradient */
  color: #fff;
  text-align: center;
}

header .header-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .header-top {
  display: flex;
  align-items: center;
  gap: 25px; /* slightly more space */
}

header .logo {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

header h1 {
  font-size: 40px; /* balance with bigger logo */
}
header h1 {
  font-size: 36px;
  margin: 0;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

header .tagline {
  font-size: 18px;
  font-weight: 500;
}
/* Luxury Pricing Section with Icons & Most Popular */
.luxury-pricing {
  background: linear-gradient(135deg, #fdf6f0, #f5f0ea);
  color: #2c2c2c;
  padding: 80px 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.luxury-pricing .container {
  max-width: 1100px;
  margin: 0 auto;
}

.luxury-pricing .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.luxury-pricing .starting-price {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #a67c52;
  font-weight: 600;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card.tier {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card.tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card.tier h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #a67c52;
  text-align: center;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.card.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card.tier ul li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.card.tier ul li .icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #a67c52;
}

.popular {
  border: 2px solid #a67c52;
}

.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #a67c52;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 5px;
  transform: rotate(15deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 50px;
  opacity: 0.7;
}
/* Button Styles */
header .button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #fff;
  color: #6a0dad;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

header .button:hover {
  background: #ff6f61;
  color: #fff;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h2 {
  margin-bottom: 15px;
  color: #6a0dad;
}

ul, ol {
  padding-left: 20px;
}

.card {
  background: #fdfdfd;
  padding: 20px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}

button {
  padding: 15px;
  background: #6a0dad;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #ff6f61;
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  header .header-top {
    flex-direction: column;
  }

  header h1 {
    font-size: 28px;
  }

  header .tagline {
    font-size: 16px;
  }

  section {
    padding: 30px 15px;
  }
