/* ============================================
   DALEX CLEANING LLC - Premium Corporate Website
   Color Palette: Navy (#0A2463), Gold (#D4AF37), 
                  White (#FFFFFF), Soft Gray (#F5F7FA)
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-primary: #0A2463;
  --navy-dark: #061740;
  --navy-light: #1A3A7D;
  --gold-primary: #D4AF37;
  --gold-dark: #B8941F;
  --gold-light: #E6C961;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-medium: #E1E8ED;
  --gray-dark: #6B7C93;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --success: #10B981;
  --error: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--navy-primary);
}

h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-center: center;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.highlight {
  color: var(--gold-primary);
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
}

.small-text {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.header-top {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.contact-link:hover {
  color: var(--gold-light);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gold-light);
}

.navbar {
  background-color: var(--white);
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  letter-spacing: -0.5px;
}

.logo i {
  color: var(--gold-primary);
  font-size: 1.75rem;
}

.logo:hover {
  color: var(--navy-light);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--navy-primary);
  transition: all 0.3s ease;
}

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

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--gray-light);
  color: var(--gold-primary);
  padding-left: 2rem;
}

/* ============================================
   4. BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}

.btn-secondary:hover {
  background-color: var(--navy-primary);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}

.btn-outline:hover {
  background-color: var(--navy-primary);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--navy-primary);
}

.btn-white:hover {
  background-color: var(--gray-light);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   5. HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.badge i {
  font-size: 2.5rem;
  color: var(--gold-primary);
}

.badge-content {
  text-align: left;
}

.badge-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.badge-content span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   6. SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy-primary);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ============================================
   7. FEATURE CARDS
   ============================================ */

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

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

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

.feature-card p {
  color: var(--text-secondary);
}

/* ============================================
   8. SERVICE CARDS
   ============================================ */

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

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold-primary);
}

.service-card h3 {
  padding: 1.5rem 1.5rem 1rem;
  font-size: 1.5rem;
}

.service-card p {
  padding: 0 1.5rem 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
  color: var(--gold-primary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* ============================================
   9. PRICING CARDS
   ============================================ */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--gold-primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: translateY(-5px) scale(1.07);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--gold-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-medium);
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-primary);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.pricing-features i {
  color: var(--success);
  font-size: 1.125rem;
}

/* ============================================
   10. TESTIMONIALS
   ============================================ */

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

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--navy-primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* ============================================
   11. FAQ SECTION
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--navy-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.faq-question i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   12. CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="200" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

/* ============================================
   13. FOOTER
   ============================================ */

.footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.footer-title i {
  color: var(--gold-primary);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.125rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--gold-primary);
  width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--gold-primary);
}

.trust-badges-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-badges-footer .badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badges-footer i {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1.5rem;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

/* ============================================
   14. PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   15. SERVICES PAGE SPECIFIC
   ============================================ */

.services-nav {
  background-color: var(--white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
  z-index: 100;
}

.services-nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-nav-link {
  color: var(--navy-primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-nav-link:hover {
  background-color: var(--gold-primary);
  color: var(--white);
}

.service-detail {
  scroll-margin-top: 180px;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.service-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.checklist li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.checklist i {
  color: var(--success);
}

.icon-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-secondary);
}

.icon-list i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.sidebar-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--navy-primary);
}

.sidebar-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.price-highlight {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* ============================================
   16. PRICING PAGE SPECIFIC
   ============================================ */

.hourly-rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.rate-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.rate-card.featured {
  border: 3px solid var(--gold-primary);
}

.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.rate-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-primary);
  margin: 0 auto 1.5rem;
}

.rate-price {
  text-align: center;
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.rate-price .currency {
  font-size: 1.5rem;
  color: var(--navy-primary);
}

.rate-price .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.rate-price .period {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.rate-description {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.rate-features {
  margin-bottom: 2rem;
}

.rate-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.rate-features i {
  color: var(--success);
}

.pricing-note {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.pricing-note i {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

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

.package-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 3px solid var(--gold-primary);
}

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

.package-header {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.package-header h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.package-price .starting {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-large {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-large .currency {
  font-size: 1.5rem;
}

.price-large .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.package-body {
  padding: 2rem;
  flex-grow: 1;
}

.package-description {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.package-features {
  margin-bottom: 1.5rem;
}

.package-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.package-features i {
  color: var(--success);
  margin-top: 0.25rem;
}

.package-details {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.package-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.package-footer {
  padding: 0 2rem 2rem;
}

.specialty-services {
  max-width: 900px;
  margin: 0 auto;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.specialty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  flex-shrink: 0;
}

.specialty-content {
  flex-grow: 1;
}

.specialty-content h3 {
  margin-bottom: 0.5rem;
}

.specialty-price {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

.factor-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.factor-card i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.factor-card h3 {
  margin-bottom: 1rem;
}

.guarantee-section {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

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

.guarantee-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  margin: 0 auto 2rem;
}

.guarantee-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guarantee-item i {
  color: var(--success);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.guarantee-item h4 {
  margin-bottom: 0.5rem;
}

/* ============================================
   17. SUBSCRIPTIONS PAGE SPECIFIC
   ============================================ */

.subscription-plans {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

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

.plan-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured {
  border: 3px solid var(--gold-primary);
}

.plan-header {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.plan-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
  margin: 0 auto 1rem;
}

.plan-header h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.plan-tagline {
  font-size: 1.125rem;
  opacity: 0.9;
}

.plan-discount {
  padding: 1.5rem;
  background-color: var(--gray-light);
  text-align: center;
}

.discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discount-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.discount-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.plan-body {
  padding: 2rem;
}

.plan-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.plan-benefits {
  margin-bottom: 1.5rem;
}

.plan-benefits li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.plan-benefits i {
  color: var(--success);
  margin-top: 0.25rem;
}

.plan-audience {
  margin-bottom: 1.5rem;
}

.plan-audience li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.plan-audience i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

.plan-pricing-example {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.plan-pricing-example h5 {
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-comparison {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background-color: var(--white);
  border-radius: 6px;
}

.price-item.featured {
  border: 2px solid var(--gold-primary);
}

.price-value.highlight {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.savings-amount {
  text-align: center;
  margin-top: 1rem;
  color: var(--success);
  font-size: 1.125rem;
}

.plan-footer {
  padding: 0 2rem 2rem;
}

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

.why-item {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-left: 3px solid var(--gold-primary);
  margin-left: 2rem;
  position: relative;
}

.step-number {
  position: absolute;
  left: -2.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.step-content {
  padding-left: 1rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.faq-subscription .faq-item {
  margin-bottom: 1.5rem;
}

.faq-subscription h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--navy-primary);
}

/* ============================================
   18. CERTIFICATIONS PAGE SPECIFIC
   ============================================ */

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

.cert-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cert-card h3 {
  margin-bottom: 1rem;
}

.cert-details {
  margin-top: 1.5rem;
}

.cert-details li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.cert-details i {
  color: var(--success);
}

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

.standard-item {
  text-align: center;
  padding: 2rem;
}

.standard-item i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.commitment-section {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

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

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

.commitment-item {
  text-align: center;
  padding: 2rem;
}

.commitment-item i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* ============================================
   19. CONTACT PAGE SPECIFIC
   ============================================ */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.method-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.contact-link-large {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin: 1rem 0;
}

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

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 150px;
}

.form-intro h2 {
  margin-bottom: 1rem;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.form-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-features i {
  color: var(--success);
  font-size: 1.25rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-medium);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.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(212, 175, 55, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 1rem;
}

.form-message {
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: #ECFDF5;
  border: 2px solid var(--success);
  color: var(--success);
}

.form-message.error {
  background-color: #FEF2F2;
  border: 2px solid var(--error);
  color: var(--error);
}

.form-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-message h3 {
  color: inherit;
  margin-bottom: 0.5rem;
}

.map-section {
  background-color: var(--gray-light);
}

.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.info-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.info-card i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* ============================================
   20. PRIVACY PAGE SPECIFIC
   ============================================ */

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  color: var(--navy-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
}

.privacy-section h3 {
  color: var(--navy-light);
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.privacy-section ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: disc;
}

.privacy-section ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-box {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info-box p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-box i {
  color: var(--gold-primary);
  width: 20px;
}

/* ============================================
   21. ADDITIONAL SECTIONS
   ============================================ */

.subscription-section {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.subscription-text h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.subscription-text .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefits-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.benefits-list i {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.subscription-cards-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mini-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-align: center;
}

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

.mini-card .discount {
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 800;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.about-image-placeholder i {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.about-image-placeholder p {
  color: var(--white);
  font-size: 1.25rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

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

.benefit-item {
  text-align: center;
  padding: 2rem;
}

.benefit-item i {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.service-area-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.areas-list i {
  color: var(--success);
}

.service-area-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-box {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.info-box h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.info-box i {
  color: var(--gold-primary);
}

/* ============================================
   22. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .service-detail-content,
  .content-grid,
  .subscription-content,
  .service-area-content {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  
  .form-intro {
    position: static;
  }
  
  .nav-menu {
    position: fixed;
    top: 120px;
    left: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 80%;
    max-width: 400px;
    height: calc(100vh - 120px);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
  
  .areas-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .services-grid,
  .pricing-cards,
  .testimonials-grid,
  .faq-grid,
  .certifications-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal a {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
  }
  
  .services-nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .specialty-item {
    flex-direction: column;
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .header-top-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   23. ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
