/* Custom CSS for Static Export - All React styles converted to pure CSS */

/* === Global Typography Reset & Upgrade === */

/* Font imports (if not already in HTML head) */

/* Body Text */
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b; /* Slate-800 */
}

/* Headings */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
  color: #1e293b;
}

h1 {
  font-size: 3.5rem; /* Hero headline */
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem; /* Section headings */
  font-weight: 700;
}

h3 {
  font-size: 1.5rem; /* Card titles */
  font-weight: 700;
}

/* Paragraphs & Body Copy */
p, .body-text {
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;
}

/* CTA Buttons */
.btn-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === Custom Wordmark Styling === */
.brand-first-name {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-last-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.gold-underline {
  position: absolute;
  left: 0;
  bottom: -6px; /* Slightly more breathing room */
  height: 3px;
  width: 100%; /* Always visible underline */
  background: #D4AF37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease, background 0.3s ease;
}

.brand-first-name:hover .gold-underline {
  transform: scaleX(1);
}

.brand-first-name {
  position: relative;
  display: inline-block;
}


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

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.floating-icon {
  animation: floating 3s ease-in-out infinite;
}

/* Perfect Service Card Layout and Button Alignment */
.service-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

/* Service Card Content Structure */
.service-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Perfect Button Alignment */
.service-card .btn-cta {
  margin-top: auto;
  align-self: stretch;
}

/* Equal Height Grid */
.auto-rows-fr {
  grid-auto-rows: 1fr;
}

/* Enhanced CTA Button Styling */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 56px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta:active::after {
  width: 300px;
  height: 300px;
}

/* Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* FAQ Styling */
.faq-item {
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

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

.faq-answer.show {
  max-height: 200px;
}

/* Navigation Enhancements */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.mobile-nav-link {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  border-left-color: #2563eb;
  background-color: #f1f5f9;
}

/* Mobile Menu Animation */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.show {
  max-height: 300px;
}

/* Sticky Navigation */
.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* WCAG 2.1 Level AA Accessibility Enhancements */

/* Enhanced Focus States */
*:focus {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
.js-focus-visible *:focus:not(.focus-visible) {
  outline: none;
}

/* Enhanced focus for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1e40af;
  color: white;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-to-main:focus {
  top: 6px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card {
    border: 2px solid #000;
  }
  
  .btn-cta {
    border: 2px solid #000;
  }
  
  .nav-link::after {
    height: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-icon {
    animation: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .btn-cta:hover {
    transform: none;
  }
}

/* Color adjustments for better contrast */
.text-slate-600 {
  color: #475569;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-800 {
  color: #1e293b;
}

/* Ensure minimum touch target sizes (44x44px) */
.btn-cta,
.mobile-menu-button,
.faq-question {
  min-height: 44px;
  min-width: 44px;
}

/* Enhanced hover states for better interaction feedback */
.service-card:hover .floating-icon {
  animation-duration: 2s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Live region for screen reader announcements */
.live-region {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Enhanced button effects */
.btn-shimmer {
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Card reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax elements */
.parallax {
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

/* Enhanced social icons */
.social-icon {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-icon:hover::before {
  left: 100%;
}

/* Ensure proper stacking context */
.service-card {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  z-index: 2;
}

/* Enhanced testimonial styling */
.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover::after {
  opacity: 1;
}

/* Responsive font scaling */
@media (max-width: 640px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .btn-cta {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Print styles */
@media print {
  .skip-to-main,
  .mobile-menu-button,
  .scroll-progress {
    display: none !important;
  }
  
  .service-card,
  .testimonial-card {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
  
  .btn-cta {
    color: #000 !important;
    background: #fff !important;
    border: 2px solid #000 !important;
  }
}

/* Focus management for modal/overlay content */
.focus-trap {
  position: relative;
}

.focus-trap:focus {
  outline: none;
}

/* Enhanced loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Error states */
.error-state {
  color: #dc2626;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* Success states */
.success-state {
  color: #059669;
  background-color: #f0fdfa;
  border: 1px solid #a7f3d0;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* Utility classes for consistent spacing */
.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

/* Ensure all interactive elements have proper cursor */
.btn-cta,
.faq-question,
.nav-link,
.mobile-nav-link,
.mobile-menu-button {
  cursor: pointer;
}

/* Final layout verification */
.grid-container {
  display: grid;
  gap: 2rem;
}

.flex-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flex-grow {
  flex: 1;
}

.mt-auto {
  margin-top: auto;
}


/* Smooth scrolling globally */
html {
  scroll-behavior: smooth;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ accordion enhancement */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* adjust as needed */
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Optional: Name styling upgrade */
.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e293b; /* Slate-800 */
}

.logo-name:hover {
  color: #2563eb; /* Blue-600 */
  transition: color 0.3s ease;
}

/* === Visual Texture & Backgrounds === */
.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(237, 242, 247, 0.6), transparent 70%);
  z-index: -1;
  animation: subtle-move 20s infinite linear alternate;
}

@keyframes subtle-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

/* Typography System */
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b; /* Slate-800 */
  line-height: 1.7;
}

h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
  color: #1e293b;
}

h1 {
  font-size: 3.5rem; /* Hero headline */
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem; /* Section headings */
  font-weight: 600;
}

h3 {
  font-size: 1.5rem; /* Card titles */
  font-weight: 600;
}

p, .body-text {
  font-size: 1.125rem; /* 18px */
}

/* === Typography Enhancements === */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

/* === Microinteractions === */
.btn-cta {
  transition: all 0.3s ease;
  background-image: linear-gradient(90deg, #10b981, #059669);
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  background-image: linear-gradient(90deg, #059669, #10b981);
}

/* Images */
img:hover {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

/* === Scroll Reveal Animations === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FAQ Accordion Enhancements === */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item .fas {
  transition: transform 0.3s ease;
}

.faq-item.active .fas {
  transform: rotate(180deg);
}

    /* Gold underline color */
    .decoration-gold-500 {
        text-decoration-color: #D4AF37; /* Warm Gold */
    }

    /* Optional: subtle underline animation on hover */
    .brand a:hover span:first-child {
        text-decoration-color: #f4d58d; /* Lighter gold on hover */
        transition: text-decoration-color 0.3s ease;
    }

    /* Optional: small caps for a premium feel */
    .brand span:first-child {
        font-variant: small-caps;
        letter-spacing: 0.05em;
    }

    .brand span:last-child {
        font-family: 'Merriweather', serif;
        font-weight: 400;
        letter-spacing: 0.02em;
    }
</style>

/* Custom Wordmark */
.brand-first-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
}

.brand-last-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.gold-underline {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #D4AF37; /* Warm Gold */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease, background 0.3s ease;
}

.brand-first-name:hover .gold-underline {
  transform: scaleX(1);
  background: #f4d58d; /* Lighter Gold on hover */
}

.gold-underline {
  width: 0;
  transition: width 0.6s ease, background 0.3s ease;
}

.brand-first-name:hover .gold-underline {
  width: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');

.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

.service-container {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 6rem;
  position: relative;
}

.service-content {
  flex: 2;
}

.sticky-card {
  flex: 1;
  position: sticky;
  top: 100px; /* adjust based on your nav/header height */
  align-self: start;
}

.price-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-heading {
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-section {
  padding: 6rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.service-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  position: relative;
}

.service-content {
  flex: 2;
}

.sticky-cta {
  flex: 1;
  position: relative;
}

.cta-card {
  position: sticky;
  top: 100px;
  background: white;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.price-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  background-color: #10b981;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-cta:hover {
  background-color: #059669;
}