/* ===============================
   PRICING PAGE – MAROON THEME
================================ */
:root {
  --primary: #5a0f22; /* main maroon */
  --primary-light: #7a1c32;
  --accent: #b52b4a;
  --text-dark: #1f1f1f;
  --text-light: #ffffff;
  --bg-light: #f9f5f6;
}

/* ==== HERO SECTION ==== */
.pricing-section {
  text-align: center;
  max-width: 1100px;
  margin: 130px auto 60px auto;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff, #f8f0f2);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(90, 15, 34, 0.15);
  animation: fadeIn 1s ease;
  background-image: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
}

.pricing-section h1 {
  font-size: 2.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.pricing-section .subheading {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

/* ==== DROPDOWN ==== */
.dropbtn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--text-light);
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(90, 15, 34, 0.3);
  transition: all 0.3s ease;
  animation: glowPulse 2.5s infinite;
}

.dropbtn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 0 20px rgba(90, 15, 34, 0.5);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 9999;
    font-family: "Playfair Display", serif;
}

.dropdown:hover .dropdown-content {
  display: block;
  
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  
}

.dropdown-content a:hover {
  background: #f5e4e8;
  color: var(--accent);
  
}

/* ==== TABLE WRAPPER ==== */
.table-wrapper {
  margin: 60px auto 100px auto;
  width: 90%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(90, 15, 34, 0.1);
  overflow-x: auto;
  padding: 50px 40px;
  animation: fadeInUp 1.2s ease;
}

.table-wrapper h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

/* ==== TABLE STYLING ==== */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid #f3d9df;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #f1d3da;
}

th {
  background: linear-gradient(90deg, #f9e3e7, #f7d6de);
  color: var(--primary);
  font-weight: 600;
}

td {
  color: #4b4b4b;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

tr:hover td {
  background: #fff4f6;
}

/* Highlight premium column */
td:nth-child(4), th:nth-child(4) {
  background: rgba(181, 43, 74, 0.05);
  font-weight: 600;
}

/* ==== CUSTOM SOLUTION ==== */
.custom-solution {
  text-align: center;
  margin: 80px auto 120px auto;
  background: linear-gradient(180deg, #fff, #f8f0f2);
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(90, 15, 34, 0.08);
  animation: fadeInUp 1s ease;
  
}

.custom-solution h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.custom-solution p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.get-in-touch-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(90, 15, 34, 0.3);
}

.get-in-touch-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(90, 15, 34, 0.5);
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 6px rgba(90, 15, 34, 0.3); }
  50% { box-shadow: 0 0 18px rgba(181, 43, 74, 0.6); }
  100% { box-shadow: 0 0 6px rgba(90, 15, 34, 0.3); }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .pricing-section h1 {
    font-size: 2rem;
  }
  .table-wrapper {
    padding: 20px;
  }
  table th, table td {
    padding: 10px;
  }
}
