/* ==========================================================================
   THREE KINGS CATERING - CUSTOM STYLESHEET
   Aesthetics: Luxury Obsidian & Gold Theme, Glassmorphism, Micro-animations
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-darker: #0b0c0e;
    --bg-dark: #121316;
    --bg-card: rgba(25, 27, 31, 0.7);
    --bg-card-hover: rgba(35, 38, 44, 0.9);
    --border-glass: rgba(212, 175, 55, 0.15);
    --border-glass-hover: rgba(212, 175, 55, 0.35);
    
    --primary-gold: #d4af37;
    --primary-gold-rgb: 212, 175, 55;
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --gold-hover: #e6c24a;
    
    --accent-green: #2e6f40;
    --accent-red: #b22222;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-dark: #0b0c0e;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Utility Classes --- */
.accent-gold {
    color: var(--primary-gold);
}

.text-glow {
    text-shadow: var(--gold-glow);
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -0.5rem auto 2.5rem auto;
}

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

/* --- Layout Grids --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.grid-3-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--text-primary);
    color: var(--text-dark);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--gold-hover);
}

/* --- Header / Navigation --- */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 12, 14, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.nav-btn-call {
    background: linear-gradient(135deg, var(--primary-gold), #bd9724);
    color: var(--text-dark);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
}

.nav-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(rgba(11, 12, 14, 0.7), rgba(11, 12, 14, 0.95)), url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 2rem;
    text-align: center;
}

/* Fallback background if background.jpg doesn't exist yet */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(31, 33, 40, 0.8) 0%, rgba(11, 12, 14, 0.98) 80%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--primary-gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-scroll {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse-scroll::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--primary-gold);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

/* --- Story Section --- */
.story-section {
    background-color: var(--bg-dark);
}

.story-text-container {
    display: flex;
    flex-direction: column;
}

.story-paragraph {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.quote-box {
    margin: 1.5rem 0 2rem 0;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 12px 12px 0;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
}

/* --- Image Collage --- */
.image-collage {
    position: relative;
    width: 100%;
    height: 450px;
}

.collage-main-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 75%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.collage-sub-frame-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--bg-dark);
    box-shadow: var(--shadow-premium);
    z-index: 3;
}

.collage-sub-frame-2 {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 35%;
    height: 40%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--bg-dark);
    box-shadow: var(--shadow-premium);
    z-index: 4;
}

.badge-year {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(11, 12, 14, 0.85);
    border: 1px solid var(--border-glass);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-gold);
}

.collage-decorative-box {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--primary-gold);
    border-right: 3px solid var(--primary-gold);
    opacity: 0.3;
    z-index: 1;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collage-img:hover {
    transform: scale(1.05);
}

/* --- GoFundMe Section --- */
.gofundme-section {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.gofundme-card {
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.08) 0%, rgba(25, 27, 31, 0.4) 80%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.gofundme-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(46, 111, 64, 0.15);
    border: 1px solid rgba(46, 111, 64, 0.3);
    color: #4cd170;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.gofundme-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.gofundme-description {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

/* Progress Bar */
.progress-container {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.progress-raised {
    color: #ffffff;
}

.progress-goal {
    color: var(--text-muted);
}

.progress-bar-bg {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #4cd170 100%);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(76, 209, 112, 0.3);
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.gofundme-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Interactive Menu Section --- */
.menu-section {
    background-color: var(--bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.menu-tab-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-tab-btn:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: var(--border-glass);
    color: var(--text-primary);
}

.menu-tab-btn.active {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    border-color: var(--primary-gold);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-premium);
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-gold);
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.menu-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.15rem;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
}

.diet-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.tag-veg {
    background-color: rgba(46, 111, 64, 0.15);
    color: #4cd170;
    border: 1px solid rgba(46, 111, 64, 0.2);
}

.tag-vegan {
    background-color: rgba(46, 111, 64, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 111, 64, 0.3);
}

.tag-spicy {
    background-color: rgba(178, 34, 34, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(178, 34, 34, 0.2);
}

.tag-favorite {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid var(--border-glass);
}

.btn-add-cater {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-add-cater:hover, .btn-add-cater.selected {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--text-dark);
}

.menu-notice {
    margin-top: 3rem;
}

/* --- Catering Booking Section --- */
.booking-section {
    background-color: var(--bg-darker);
}

.booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}

.booking-form-header {
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
}

/* Multi-step indicator */
.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto 2.5rem auto;
}

.step-dot {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.step-dot.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.step-dot.complete {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: #ffffff;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
}

/* Form Steps fields animation */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fade-in-step 0.4s ease;
}

@keyframes fade-in-step {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fields & Inputs Styling */
.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: rgba(11, 12, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* Menu item checkboxes list in form */
.menu-selection-container {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background-color: rgba(11, 12, 14, 0.3);
}

.form-menu-item-row {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-menu-item-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.form-menu-item-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-gold);
    margin-right: 1rem;
    cursor: pointer;
}

.form-menu-item-row label {
    margin-bottom: 0;
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-menu-item-price {
    font-weight: 600;
    color: var(--primary-gold);
}

.form-nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Cost Estimator Sidebar */
.estimator-sidebar {
    position: sticky;
    top: 100px;
}

.estimator-card {
    background: radial-gradient(ellipse at top left, rgba(25, 27, 31, 0.8) 0%, rgba(18, 19, 22, 0.95) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.estimator-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.estimator-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.est-value {
    font-weight: 600;
    color: #ffffff;
}

.estimator-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
}

.selected-items-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.selected-items-list {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}

.selected-items-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.empty-item-notice {
    color: var(--text-muted);
    font-style: italic;
}

.total-row {
    font-size: 1.15rem;
    font-weight: 700;
}

.total-price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    text-shadow: var(--gold-glow);
}

.estimator-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.4;
}

/* --- Success Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(11, 12, 14, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-glass-hover);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 0.5;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 111, 64, 0.15);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.success-check-icon {
    width: 40px;
    height: 40px;
    fill: #4cd170;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.modal-message {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.order-summary-box {
    background-color: rgba(11, 12, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    font-family: monospace;
    font-size: 0.9rem;
    text-align: left;
    white-space: pre-wrap;
    max-height: 250px;
    overflow-y: auto;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.modal-action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-alternative {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-tel-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: underline;
}

/* --- Scroll animations helper classes --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.app-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-gold);
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-gold);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-links-list a {
    color: var(--text-secondary);
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

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

.contact-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-link {
    color: var(--primary-gold);
    font-weight: 600;
}

.contact-link:hover {
    text-shadow: var(--gold-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .grid-3-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image-container {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .estimator-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .gofundme-card {
        padding: 2.5rem 1.5rem;
    }
    
    .gofundme-title {
        font-size: 2rem;
    }
    
    /* Navigation responsive menu */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-darker);
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-btn-call {
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-form-card {
        padding: 2rem 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Navigation Toggle Animation --- */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
