/* ========================================
   ROYALTY CONSULTANTS - Professional Theme
   Purple & Gold Color Scheme
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Colors */
  --purple-deep: #2D1B4E;
  --purple-primary: #4A2C7A;
  --purple-light: #6B4D9A;
  --purple-muted: #8B6BB9;
  
  /* Gold Accents */
  --gold-primary: #D4AF37;
  --gold-light: #E8C868;
  --gold-dark: #B8941F;
  --gold-shimmer: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #D4AF37 100%);
  
  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FDFBF7;
  --gray-100: #F8F7FA;
  --gray-200: #E8E5ED;
  --gray-300: #D1CDD9;
  --gray-600: #6B6678;
  --gray-800: #2E2A36;
  --black: #1A1720;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ---------- 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);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--purple-deep);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-shimmer);
  border-radius: 2px;
}

.gold-text {
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-shimmer);
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--purple-deep);
}

.btn-outline {
  background: transparent;
  color: var(--purple-primary);
  border: 2px solid var(--purple-primary);
}

.btn-outline:hover {
  background: var(--purple-primary);
  color: var(--white);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(45, 27, 78, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: clamp(80px, 12vw, 150px);
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
  transform: scale(1.02);
}

/* Footer logo - larger */
.footer-brand .logo-img {
  height: clamp(100px, 15vw, 180px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.75rem 1.75rem !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 50%, var(--purple-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow span {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero h1 .highlight {
  color: var(--gold-primary);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.1;
  pointer-events: none;
}

.hero-decoration svg {
  width: 100%;
  height: 100%;
}

/* ---------- Mission Section ---------- */
.mission {
  background: var(--white);
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, var(--purple-deep), transparent);
  opacity: 0.03;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-content h2 {
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: 8px;
  border-left: 3px solid var(--gold-primary);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.08);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--purple-primary);
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.mission-visual {
  position: relative;
}

.mission-image-frame {
  position: relative;
  padding: 2rem;
}

.mission-image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  opacity: 0.3;
}

.mission-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  border-radius: 8px;
  opacity: 0.1;
  z-index: -1;
}

.mission-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* ---------- Services Overview ---------- */
.services-overview {
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 27, 78, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-primary);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
}

.service-list {
  text-align: left;
  margin: 0;
  padding: 0;
}

.service-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.service-card .btn {
  margin-top: 1.5rem;
}

/* ---------- Pricing Section ---------- */
.pricing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(45, 27, 78, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-shimmer);
  color: var(--purple-deep);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-tier {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier {
  color: var(--gold-light);
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-card.featured .pricing-header h3 {
  color: var(--white);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-primary);
}

.pricing-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-card.featured .pricing-currency,
.pricing-card.featured .pricing-value {
  color: var(--gold-primary);
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-600);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--purple-deep);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--gold-primary);
}

/* ---------- Contact Page ---------- */
.contact-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  padding: 10rem 0 6rem;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--gray-100);
  padding: 3rem;
  border-radius: 16px;
}

.contact-form h2 {
  margin-bottom: 0.5rem;
}

.contact-form > p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 4px rgba(74, 44, 122, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  padding: 1.25rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
}

.info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-content p {
  margin-bottom: 0;
  color: var(--purple-primary);
  font-weight: 500;
}

.info-content a {
  color: var(--purple-primary);
}

.info-content a:hover {
  color: var(--gold-primary);
}

.contact-social {
  margin-top: 3rem;
}

.contact-social h4 {
  margin-bottom: 1rem;
}

/* Centered Contact Card */
.contact-card-centered {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(45, 27, 78, 0.1);
  text-align: center;
}

.contact-card-centered h2 {
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.contact-items-centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 16px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.contact-item-large:hover {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-primary));
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 27, 78, 0.2);
}

.contact-item-large:hover .contact-item-icon {
  background: rgba(255, 255, 255, 0.15);
}

.contact-item-large:hover .contact-item-icon svg {
  stroke: var(--gold-primary);
}

.contact-item-large:hover .contact-item-label,
.contact-item-large:hover .contact-item-value {
  color: var(--white);
}

.contact-item-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.contact-item-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary);
  transition: var(--transition-smooth);
}

.contact-item-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.contact-item-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--purple-deep);
  transition: var(--transition-smooth);
}

.contact-social-centered {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.contact-social-centered h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: var(--gray-100);
  border-radius: 12px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link-large:hover {
  background: var(--purple-primary);
  transform: translateY(-3px);
}

.social-link-large svg {
  width: 28px;
  height: 28px;
  fill: var(--purple-primary);
  transition: var(--transition-smooth);
}

.social-link-large span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition-smooth);
}

.social-link-large:hover svg {
  fill: var(--gold-primary);
}

.social-link-large:hover span {
  color: var(--white);
}

@media (max-width: 600px) {
  .contact-card-centered {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-items-centered {
    grid-template-columns: 1fr;
  }
  
  .social-links-large {
    flex-wrap: wrap;
  }
  
  .social-link-large {
    padding: 1rem 1.5rem;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--purple-primary);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--purple-primary);
  transition: var(--transition-smooth);
}

.social-link:hover svg {
  fill: var(--gold-primary);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--purple-deep);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-social a:hover svg {
  fill: var(--purple-deep);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-column a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .pricing-grid {
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--purple-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-visual {
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: -1;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.85rem;
  }
  
  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

