/* 🌟 General Styles */
body {
    font-family: 'Georgia', serif;
    background-color: #fafaf9;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Global fix */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll globally */
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  hyphens: none;
}

/* Typography */
h1, h2, h3, p, ul {
    margin-bottom: 1rem;
    overflow-wrap: break-word;
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    margin: 1.5rem 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

p, ul {
    font-size: 1.05rem;
    color: #333;
    letter-spacing: 0.3px;
    overflow-wrap: break-word;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    overflow: visible;
}

.image-column, .text-column {
    flex: 1;
    min-width: 300px;
}

.image-column {
    position: relative;
    z-index: 3;
    justify-self: flex-end;
}

.text-column + .image-column {
    margin-right: -3rem;
}

.image-column:first-child {
    margin-left: -3rem;
}

.image-column + .text-column {
    margin-right: 0;
    margin-left: 0;
}

/* Vertically center text column when it comes before image */
.text-column + .image-column {
    margin-right: -3rem;
}

.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-column img:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.15);
}

.mystical-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



.mystical-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    stroke: black;
    stroke-width: 2;
    overflow: visible;
}

.mystical-image {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 85%;
    object-fit: cover;
}

.image-column .mystical-image {
    width: 85%;
    margin-left: auto;
}

/* 🔹 Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #483268;
  border-bottom: 2px solid #f4a6c1;
  padding: 0.9rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.nav-brand {
    color: #fff;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-right: 3.5rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.nav-brand:hover {
    color: #f4a6c1;
    text-shadow: 0 0 10px rgba(244, 166, 193, 0.5);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 7px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    font-size: 0.95rem;
    display: block;
}

.nav-links li a:hover, .nav-links li a:focus {
    background-color: rgba(244, 166, 193, 0.15);
    color: #f4a6c1;
    transform: translateY(-2px);
}

.nav-links li a.active {
    background: linear-gradient(135deg, #d97b93 0%, #c76185 100%);
    color: white;
    font-weight: 600;
}

#hamburger {
    display: none;
}

/* Header - now using .hero-header with hero-content */

.hero-header {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    height: 100%;
}

.hero-title {
    color: #fff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
    font-weight: 700;
    font-size: 2.4rem;
    padding: 0 2rem;
}

.hero-tagline {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 1.4rem;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 🎭 Hero Section */
.hero {
    background-color: #ede5e3;
    padding: 3rem 1rem;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d97b93 0%, #c76185 100%);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(217, 123, 147, 0.25);
}

.cta-button:hover, .cta-button:focus {
    background: linear-gradient(135deg, #c76185 0%, #b84d73 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 123, 147, 0.35);
}

.cta-button--light {
    background: linear-gradient(135deg, #d97b93 0%, #c76185 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 123, 147, 0.25);
}

.cta-button--light:hover, .cta-button--light:focus {
    background: linear-gradient(135deg, #c76185 0%, #b84d73 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 123, 147, 0.35);
}

/* Package Learn More Button - Purple Style */
a.cta-button.package-learn-more {
    background: #483268 !important;
    background-image: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(72, 50, 104, 0.35) !important;
    border: none !important;
    position: relative !important;
    z-index: 10 !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

a.cta-button.package-learn-more:hover,
a.cta-button.package-learn-more:focus {
    background: #3d2854 !important;
    background-image: none !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(72, 50, 104, 0.5) !important;
}

/* ⭐ Testimonials */
.testimonials {
    background-color: #f9f9f9;
    padding: 1rem 1rem;
    text-align: center;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(249, 196, 139, 0.2);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.google-review {
    border-left: 4px solid #f6b06b;
    font-style: italic;
    padding: 1rem;
}

.google-review footer {
    margin-top: 1rem;
    font-weight: bold;
}

/* 📌 Footer */
.site-footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1514 100%);
    color: #d4d4d4;
    padding: 4.5rem 2.5rem;
    text-align: left;
    border-top: 3px solid #f4a6c1;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 0.9rem;
    color: #c4c4c4;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-column a {
    color: #f4a6c1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-column a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(244, 166, 193, 0.6);
    transform: translateX(3px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #f4a6c1, transparent);
    margin: 2.5rem 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 166, 193, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin: 0.5rem 0;
    letter-spacing: 0.3px;
}

.footer-bottom p:last-child {
    color: #fff;
    font-weight: 600;
    margin-top: 0.8rem;
}

.footer-legal-link {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: #f4a6c1;
}

/* 🎴 Tarot Card Showcase */
.tarot-card-showcase {
    background: linear-gradient(135deg, #f9f9f9 0%, #ede5e3 100%);
    padding: 1rem 1rem;
    text-align: center;
}

.tarot-card-showcase h2 {
    margin-bottom: 2rem;
    color: #483268;
}

.card-example {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.tarot-card-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(72, 50, 104, 0.18)) brightness(1.02);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarot-card-svg:hover {
    transform: translateY(-10px) scale(1.08);
    filter: drop-shadow(0 20px 40px rgba(72, 50, 104, 0.3)) brightness(1.12);
}

/* 🎴 Packages Section Intro */
.packages-intro {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(244, 166, 193, 0.08) 0%, rgba(72, 50, 104, 0.03) 100%);
    border-bottom: 2px solid rgba(244, 166, 193, 0.2);
}

.packages-intro .container {
    max-width: 900px;
    flex-direction: column;
    padding: 0 2.5rem;
}

.packages-intro h2 {
    text-align: center;
    color: #483268;
    margin-bottom: 1.5rem;
}

.packages-intro p {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #514437;
    margin-bottom: 1.2rem;
}

.packages-intro p:last-child {
    margin-bottom: 0;
}

/* 🎴 Packages Section */
.packages {
    padding: 2rem 1rem;
    background-color: #fafaf9;
}

/* 🏠 Home Section */
.home {
    padding: 2rem 1rem;
    background-color: #fafaf9;
}

.packages h2:first-child {
    text-align: center;
    margin-bottom: 3.5rem;
    width: 100%;
    margin-top: 0;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}

.packages-preview-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}

.packages-preview-grid a {
    display: contents;
}

.packages-preview-grid .package {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.packages-preview-grid .package-tarot-card {
    max-width: 100px;
}

.packages-preview-grid .package-card-container {
    margin-bottom: 1rem;
}

.packages-grid .package {
    display: flex;
    flex-direction: column;
}

.packages-grid a {
    display: contents;
}

/* 🎴 Package Card Styling */
.package {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
    border: 2px solid #e8dccf;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249, 196, 139, 0.08) 0%, rgba(72, 50, 104, 0.03) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 196, 139, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.package:hover::before {
    left: 100%;
}

.package:hover {
    border-color: #f4a6c1;
    box-shadow: 0 12px 30px rgba(72, 50, 104, 0.15), 0 0 20px rgba(244, 166, 193, 0.1);
    background: linear-gradient(135deg, rgba(244, 166, 193, 0.12) 0%, rgba(72, 50, 104, 0.06) 100%);
    transform: translateY(-6px);
}

.package-card-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.package-tarot-card {
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(72, 50, 104, 0.15)) brightness(1.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 4px;
    display: block;
}

.package-tarot-card:hover {
    transform: translateY(-12px) scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(72, 50, 104, 0.25)) brightness(1.08);
}

.package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.package-content h2 {
    margin-top: 0;
    margin-bottom: 1.4rem;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #483268;
    line-height: 1.35;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.package-content h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f4a6c1 0%, transparent 100%);
    margin: 0.8rem auto 0;
}

.package-content p {
    margin: 1rem 0;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #514437;
    text-align: left;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 1;
}

.package-content .cta-button {
    margin-top: auto;
    margin-bottom: 0;
}

/* � Quote Calculator */
.quote-calculator {
    padding: 1rem 1rem;
    background-color: #fafaf9;
}

.calculator-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.calculator-wrapper h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #483268;
}

.calculator-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    font-weight: 600;
    color: #483268;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.form-group small {
    font-size: 0.85rem;
    color: #999;
    margin-top: -0.8rem;
}

/* Package selector */
.package-selector {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.package-selector input[type="radio"] {
    display: none;
}

.package-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8dccf;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafaf9;
}

.package-selector input[type="radio"]:checked + .package-label {
    border-color: #f4a6c1;
    background: rgba(244, 166, 193, 0.08);
    box-shadow: 0 4px 12px rgba(244, 166, 193, 0.2);
}

.package-name {
    font-size: 0.9rem;
    color: #999;
}

.package-desc {
    font-weight: 700;
    color: #483268;
    font-size: 1.05rem;
}

/* Location selector */
.location-selector {
    display: flex;
    gap: 1.5rem;
}

.location-selector input[type="radio"] {
    display: none;
}

.location-selector label {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e8dccf;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafaf9;
    font-weight: 600;
}

.location-selector input[type="radio"]:checked + label {
    border-color: #f4a6c1;
    background: rgba(244, 166, 193, 0.08);
    color: #483268;
}

/* Slider */
.slider-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #e8dccf, #f4a6c1);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f4a6c1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.4);
    transition: all 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    background: #d97b93;
    box-shadow: 0 4px 12px rgba(244, 166, 193, 0.6);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f4a6c1;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.4);
    transition: all 0.2s;
}

.slider::-moz-range-thumb:hover {
    background: #d97b93;
    box-shadow: 0 4px 12px rgba(244, 166, 193, 0.6);
}

.slider-display {
    font-size: 1.3rem;
    font-weight: 700;
    color: #483268;
}

/* Select dropdown */
.duration-select {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8dccf;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafaf9;
    color: #483268;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.duration-select:hover, .duration-select:focus {
    border-color: #f4a6c1;
    outline: none;
}

/* Corporate notice */
.corporate-notice {
    background: rgba(244, 166, 193, 0.1);
    border-left: 4px solid #f4a6c1;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.corporate-notice p {
    margin: 0.5rem 0;
    color: #483268;
    font-size: 0.95rem;
}

.corporate-notice p:first-child {
    margin-top: 0;
}

/* Quote display */
.quote-display {
    background: linear-gradient(135deg, #f9f9f9 0%, #ede5e3 100%);
    border: 2px solid #e8dccf;
    border-radius: 14px;
    padding: 2.5rem;
    margin-top: 1rem;
}

.quote-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(244, 166, 193, 0.2);
    font-size: 1rem;
}

.quote-line:last-of-type {
    border-bottom: none;
}

.quote-line.total {
    border-top: 2px solid #f4a6c1;
    padding-top: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #483268;
}

.quote-note {
    background: rgba(244, 166, 193, 0.1);
    border-left: 4px solid #f4a6c1;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
}

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

.corporate-quote {
    background: rgba(244, 166, 193, 0.08);
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #f4a6c1;
}

.corporate-quote h3 {
    color: #483268;
    margin-bottom: 1.2rem;
}

.corporate-quote ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.corporate-quote li {
    padding: 0.6rem 0;
    color: #666;
}
/* Form Error Styles */
#formError {
    margin: 1.5rem 0;
}

.error-box {
    background: #ffe5e5;
    border-left: 4px solid #d9534f;
    color: #c0392b;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.error-message {
    color: #d9534f;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
}

/* Form input styling */
.contact-info-section input {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8dccf;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafaf9;
    color: #483268;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.contact-info-section input:focus {
    border-color: #f4a6c1;
    outline: none;
}

.contact-info-section input.error {
    border-color: #d9534f;
    background: #ffe5e5;
}

/* Event details section */
.event-details-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8dccf;
}

.event-details-section h3 {
    color: #483268;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.event-details-section input[type="date"],
.event-details-section input[type="time"] {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8dccf;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafaf9;
    color: #483268;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
    width: 100%;
}

.event-details-section input[type="date"]:focus,
.event-details-section input[type="time"]:focus {
    border-color: #f4a6c1;
    outline: none;
}

.event-details-section input[type="date"].error,
.event-details-section input[type="time"].error {
    border-color: #d9534f;
    background: #ffe5e5;
}

/* Form submit button */
.quote-form button[type="submit"] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #b84d73 0%, #9e3860 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 15px rgba(158, 56, 96, 0.35);
}

.quote-form button[type="submit"]:hover:not(:disabled) {
    background: linear-gradient(135deg, #9e3860 0%, #852d51 100%);
    box-shadow: 0 8px 25px rgba(158, 56, 96, 0.45);
}

.quote-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}
/* �📱 Mobile Styles */
@media (max-width: 768px) {
    * {
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
    }

    header {
        background-position: center top;
        background-attachment: scroll;
    }

    .hero-header {
        background-attachment: scroll;
        background-position: center center;
        min-height: 50vh;
    }

    #hamburger {
        display: block;
        font-size: 24px;
        padding: 0.5rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        margin-left: auto;
        transition: all 0.3s ease;
        z-index: 1001;
        position: relative;
    }

    #hamburger:hover {
        transform: scale(1.1);
        text-shadow: 0 0 10px rgba(244, 166, 193, 0.6);
    }

    .nav-links {
        flex-direction: column;
        background: #2a293e;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 60%;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out;
        visibility: hidden;
        z-index: 1000;
    }

    .nav-links.show {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 15px 10px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    h1 {
        font-size: 2rem;
        line-height: 1.3;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .hero-title {
        font-size: 1.7rem !important;
        padding: 0 1rem !important;
    }

    h2 {
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    h3 {
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .package-content h2 {
        hyphens: none !important;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .image-column, .text-column {
        width: 100%;
    }

    .constellation {
        width: 70vw;
        opacity: 0.2;
    }

    /* Mobile grid overrides */
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    .packages-preview-grid {
        grid-template-columns: 1fr !important;
    }

    .david-intro-inner {
        flex-direction: column;
        text-align: center;
    }

    .expectations-grid {
        grid-template-columns: 1fr !important;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr !important;
    }

    .expectations-qa-grid {
        grid-template-columns: 1fr !important;
    }

    .expectations-vibe-content {
        width: 100% !important;
    }

    /* Quote Calculator Mobile Styles */
    .calculator-wrapper {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Thank You Page Mobile Styles */
    .thank-you-container {
        margin: 1.5rem auto !important;
        padding: 1.5rem !important;
        border-radius: 10px;
    }

    .thank-you-container h1 {
        font-size: 1.8rem !important;
    }

    .thank-you-container p {
        font-size: 1rem !important;
    }

    .next-steps {
        padding: 1.2rem !important;
        margin: 1.5rem 0 !important;
    }

    .return-home {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Tarot Card Image Styling */
.tarot-card-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .tarot-card-image {
        max-width: 250px;
    }
}

/* Form Error Messages */
.form-error {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fee5e5;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-error p {
    color: #c0392b;
    margin: 0;
    font-weight: 500;
}

.error-box {
    color: #c0392b;
    padding: 0.5rem;
}

.error-message {
    display: block;
    color: #c0392b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Process Information Box */
.process-info {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.process-info__title {
    color: #8B5A3C;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.process-info__list {
    margin: 0;
    padding-left: 1.5rem;
}

/* ====== DAVID INTRO STRIP ====== */
.david-intro {
    background: linear-gradient(135deg, rgba(72, 50, 104, 0.04) 0%, rgba(244, 166, 193, 0.06) 100%);
    border-top: 1px solid rgba(244, 166, 193, 0.2);
    border-bottom: 1px solid rgba(244, 166, 193, 0.2);
    padding: 2.5rem 1rem;
}

.david-intro-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.david-intro-photo {
    width: 200px;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: 8px;
    border: 3px solid rgba(244, 166, 193, 0.6);
    box-shadow: 0 4px 20px rgba(72, 50, 104, 0.15);
}

.david-intro-text h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: #483268;
    margin-bottom: 0.5rem;
}

.david-intro-text p {
    color: #5a4070;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #483268;
    border: 2px solid #483268;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta-button-secondary:hover {
    background: #483268;
    color: white;
}

/* ====== HOME PAGE STYLES (index.php) ====== */

/* 🏠 Home Hero Section */
.home-hero {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(244, 166, 193, 0.08) 0%, rgba(72, 50, 104, 0.03) 100%);
    border-bottom: 2px solid rgba(244, 166, 193, 0.2);
    text-align: center;
}

.home-hero .container {
    flex-direction: column;
    max-width: 900px;
}

.home-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #483268;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-family: 'Cinzel Decorative', serif;
}

.david-headshot {
    display: block;
    width: 240px;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(244, 166, 193, 0.6);
    box-shadow: 0 4px 20px rgba(72, 50, 104, 0.15);
}

.home-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5a4070;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.home-subtitle a {
    color: #483268;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.home-subtitle a:hover {
    color: #c2607a;
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
}

.quote-box {
    background: #f9f5f1;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid #d4a574;
}

.quote-box p {
    font-style: italic;
    margin: 0;
}

.quote-author {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #6b5344;
}

.cta-section {
    background: #f9f5f1;
    padding: 2rem 2rem;
    text-align: center;
    margin: 0;
}

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

.cta-section h3 {
    margin: 0 0 2rem 0;
    font-size: 1.3rem;
}

/* ====== ABOUT PAGE STYLES (about.php) ====== */
.section-title-spacing {
    margin-top: 2rem;
}

.about-cta {
    margin-top: 2rem;
}

/* ====== PACKAGE PAGE STYLES ====== */

/* Package Hero and Layout Styles */
.package-hero-title {
    margin-bottom: 0.5rem;
}

.package-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

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

.package-quote {
    font-style: italic;
}

.package-testimonial {
    border-left: 4px solid #f4a6c1;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.package-testimonial footer {
    margin-top: 0.5rem;
    font-weight: 600;
    font-style: normal;
}

.package-section-list {
    font-size: 1.05rem;
    line-height: 1.8;
}

.package-faq {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.package-faq > div {
    margin-bottom: 1.5rem;
}

.package-faq > div:last-child {
    margin-bottom: 0;
}

.package-faq h4 {
    color: #8B5A3C;
    margin-bottom: 0.5rem;
}

/* ====== EXPECTATIONS PAGE STYLES (expectations.php) ====== */
.expectations-hero {
    padding: 2rem 0;
}

.expectations-grid {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.expectations-image-col {
    order: 2;
}

.expectations-text-col {
    order: 1;
}

.expectations-list {
    margin-bottom: 1rem;
}

.scroll-indicator {
    text-align: center;
    padding-top: 1rem;
    color: #8B5A3C;
    font-size: 1.2rem;
}

.how-it-works {
    padding: 2rem 0;
    background: #f9f7f4;
}

.how-it-works-title {
    text-align: center;
    margin-bottom: 2rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.expectations-qna {
    padding: 2rem 0;
}

.expectations-qna-title {
    text-align: center;
    margin-bottom: 2rem;
}

.expectations-qa-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.qa-item h4 {
    color: #8B5A3C;
    margin-bottom: 0.5rem;
}

.expectations-vibe {
    padding: 2rem 0;
    background: #f9f7f4;
}

.expectations-vibe-title {
    text-align: center;
    margin-bottom: 2rem;
}

.expectations-vibe-content {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.expectations-vibe-cta {
    text-align: center;
}

.expectations-image-max {
    max-width: 300px;
}

/* ====== PACKAGES PAGE STYLES (packages.php) ====== */
.package-subtitle {
    color: #8b7355;
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.package-description {
    text-align: center;
}

.package-link {
    text-decoration: none;
    color: inherit;
}

/* Container fix for expectations page */
.expectations-hero .container,
.expectations-qna .container,
.expectations-vibe .container,
.how-it-works .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.expectations-grid .container {
    max-width: 100%;
}

/* 🎉 Thank You Page */
.thank-you-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #ede5e3 100%);
    border: 2px solid #e8dccf;
    border-radius: 14px;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thank-you-container h1 {
    font-size: 2.5rem;
    color: #483268;
    margin-top: 0;
    text-shadow: none;
    margin-bottom: 1rem;
}

.thank-you-container p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.next-steps {
    background: rgba(244, 166, 193, 0.1);
    border-left: 4px solid #f4a6c1;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    margin: 2rem 0;
}

.next-steps h3 {
    color: #483268;
    margin-top: 0;
}

.next-steps ol {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin: 0.8rem 0;
    color: #666;
}

.return-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f4a6c1;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.return-home:hover {
    background: #d97b93;
    box-shadow: 0 4px 12px rgba(244, 166, 193, 0.4);
}

.thank-you-inbox-note {
    color: #f4a6c1;
    font-weight: 600;
}