/* Thailand Privilege Card - Luxury Theme Stylesheet */
/* Color Palette from Logo */
:root {
  --gold-primary: #c9a227;
  --gold-light: #d4af37;
  --gold-bright: #f0d060;
  --gold-dark: #9a7b1a;
  --navy-dark: #0a1628;
  --navy-primary: #0f2847;
  --navy-light: #1a3a5c;
  --navy-lighter: #2a4a6c;
  --cream: #faf8f0;
  --white: #ffffff;
  --text-light: #e8e4d9;
  --text-muted: #a0a0a0;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(26, 58, 92, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-dark) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-bright);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: var(--transition-smooth);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--gold-light);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition-smooth);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 162, 39, 0.3);
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-bright);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
  filter: drop-shadow(0 10px 30px rgba(201, 162, 39, 0.2));
}

/* Features Grid */
.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 40, 71, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 1.5rem auto;
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.5) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.package-card.featured {
  border-color: var(--gold-primary);
  transform: scale(1.02);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.package-tier {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.package-validity {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: bold;
}

/* Benefits Section */
.benefits-list {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 58, 92, 0.3);
  border-left: 3px solid var(--gold-primary);
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  background: rgba(26, 58, 92, 0.5);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-content h2 {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--gold-bright);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.5) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.comparison-table th {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(26, 58, 92, 0.5);
}

.comparison-table td {
  color: var(--text-light);
}

.comparison-table tr:hover td {
  background: rgba(26, 58, 92, 0.3);
}

/* Footer */
footer {
  background: rgba(10, 22, 40, 0.9);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

/* Success Message */
.success-message {
  display: none;
  background: rgba(39, 201, 82, 0.1);
  border: 1px solid rgba(39, 201, 82, 0.3);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.success-message h3 {
  color: #27c952;
  margin-bottom: 1rem;
}

/* Page Header */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--gold-light);
  margin: 0 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(26, 58, 92, 0.5) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 4rem;
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

/* Blog Preview */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.5) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.3);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-card h3 a {
  color: var(--white);
}

.blog-card h3 a:hover {
  color: var(--gold-light);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }
  
  .logo img {
    height: 45px;
  }
  
  .logo-text {
    display: none;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    font-size: 1.1rem;
    padding: 1rem 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding: 7rem 1.5rem 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  
  .cta-section {
    padding: 3rem 2rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 40, 71, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateX(10px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
  opacity: 0.4;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
}

/* Commission Table */
.commission-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.commission-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.commission-table th,
.commission-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.commission-table th {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(26, 58, 92, 0.6);
}

.commission-table td {
  color: var(--text-light);
  background: rgba(15, 40, 71, 0.4);
}

.commission-table tr:hover td {
  background: rgba(26, 58, 92, 0.5);
}

.commission-range {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold-light);
}

.tier-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

.tier-bronze {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  color: #fff;
}

.tier-gold {
  background: linear-gradient(135deg, var(--gold-primary), #D4AF37);
  color: var(--navy-dark);
}

.tier-platinum {
  background: linear-gradient(135deg, #E5E4E2, #C0C0C0);
  color: #333;
}

.tier-diamond {
  background: linear-gradient(135deg, #b9f2ff, #7ee8fa);
  color: #1a1a2e;
}

.tier-reserve {
  background: linear-gradient(135deg, #1a1a2e, #0a0a15);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.table-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-box h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  margin: 0;
  color: var(--text-light);
}

/* Visual Card (Stats) */
.visual-card {
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.6) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2.5rem;
}

.stat-highlight {
  text-align: center;
  padding: 1.5rem 0;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
  margin: 0.5rem 0;
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.5) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  overflow: hidden;
}

.featured-image {
  position: relative;
  min-height: 350px;
}

.featured-placeholder,
.blog-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.blog-placeholder .placeholder-icon {
  font-size: 3rem;
}

.article-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-date {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-content h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-meta {
  margin-bottom: 1.5rem;
}

.read-time {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--gold-muted);
}

/* Blog Grid Enhanced */
.blog-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  color: var(--gold-primary);
}

/* Topic Grid */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 40, 71, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.topic-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-3px);
}

.topic-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.topic-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(15, 40, 71, 0.8);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Benefits Grid 4 Column */
.benefits-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 40, 71, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.1);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Section CTA */
.section-cta {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(26, 58, 92, 0.6) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Info CTA (inline) */
.info-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(160deg, rgba(26, 58, 92, 0.5) 0%, rgba(15, 40, 71, 0.8) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.info-cta-content h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.info-cta-content p {
  color: var(--text-muted);
  margin: 0;
}

/* Footer Links Enhancement */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  opacity: 0.7;
  max-width: 600px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1.5rem;
}

/* Responsive Additions */
@media (max-width: 1024px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .featured-image {
    min-height: 250px;
  }
  
  .info-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .featured-content {
    padding: 2rem;
  }
  
  .featured-content h2 {
    font-size: 1.4rem;
  }
}

/* Print Styles */
@media print {
  header, footer, .btn, nav {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3 {
    color: black;
  }
}
