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

:root {
    --primary-color: #1e3a5f;
    --primary-dark: #0f1f33;
    --primary-light: #2d4a6f;
    --secondary-color: #3d5a7f;
    --accent-color: #c9a227;
    --fire-orange: #f7931e;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --text-white: #ffffff;
    --bg-light: #f5f6f8;
    --bg-white: #ffffff;
    --border-color: #e0e4e8;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: transparent;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.nav-toggle:hover {
    background-color: var(--fire-orange);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-close:hover {
    color: var(--fire-orange);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--fire-orange);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 4rem;
    background-image: url('images/ryan/ryan_praying_lg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(15, 31, 51, 0.85) 100%);
}

.hero-content {
    flex: 1;
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5rem;
}

.hero-logo-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-mission {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Faith Banner Section */
.faith-banner {
    background: linear-gradient(135deg, var(--fire-orange) 0%, var(--accent-color) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.faith-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--fire-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--fire-orange);
    border: 2px solid var(--fire-orange);
}

.btn-secondary:hover {
    background-color: var(--fire-orange);
    color: var(--text-white);
}

.btn-full {
    width: 100%;
}

/* Page (SPA) Styles */
.page {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-top: 80px;
}

#home {
    padding-top: 0;
}

.page.active {
    display: block;
    opacity: 1;
}

.page.fade-in {
    animation: fadeIn 0.35s ease forwards;
}

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

/* Section Styles (within pages) */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--fire-orange);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--fire-orange);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.booking-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.booking-info li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.booking-contact {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.booking-image {
    margin-top: 2rem;
}

.booking-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.booking-contact h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.booking-contact p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.contact-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.booking-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--fire-orange);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--fire-orange);
}

.contact-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.contact-message p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Meet Ryan Page */
.meet-ryan {
    background-color: var(--bg-white);
    padding: 4rem 0 5rem;
}

.founder-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.founder-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fire-orange);
    margin-bottom: 0.75rem;
}

.founder-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.founder-title::after {
    margin: 0.75rem 0 0;
}

.founder-welcome {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 620px;
}

.founder-photo-wrap {
    flex-shrink: 0;
}

.founder-photo-placeholder {
    width: 220px;
    height: 260px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.founder-photo-placeholder span {
    font-size: 2.5rem;
}

.founder-photo {
    width: 420px;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.founder-story {
    margin-bottom: 3rem;
}

.founder-story-block {
    width: 100%;
}

.founder-story-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.founder-story-block p {
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.founder-approach {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.founder-approach-intro {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-pillar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.pillar-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.approach-pillar h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.approach-pillar p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.founder-closing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.founder-quote {
    border-left: 4px solid var(--fire-orange);
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 0 12px 12px 0;
    width: 100%;
}

.founder-quote p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.founder-quote footer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-family: 'Playfair Display', Georgia, serif;
}

@media (max-width: 768px) {
    .founder-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-title {
        text-align: center;
    }
    .founder-title::after {
        margin: 0.75rem auto 0;
    }
    .founder-photo-wrap {
        order: -1;
        display: flex;
        justify-content: center;
    }
    .founder-photo {
        width: 100%;
        max-width: 360px;
        height: auto;
    }
    .approach-pillars {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
}

.footer-logo-img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-link-group h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-link-group ul {
    list-style: none;
}

.footer-link-group li {
    margin-bottom: 0.5rem;
}

.footer-link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-group a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav-links a {
        font-size: 1.5rem;
    }

    .hero-logo {
        margin-bottom: 2.5rem;
    }

    .hero-logo-img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.service-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-modal.active .modal-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--text-light);
    color: var(--text-white);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.modal-body {
    padding: 2rem;
}

.modal-scripture {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--fire-orange);
    margin-bottom: 2rem;
}

.modal-scripture p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.scripture-reference {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.modal-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-section p:last-child {
    margin-bottom: 0;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.modal-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--fire-orange);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.modal-steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: step-counter;
}

.modal-steps li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    counter-increment: step-counter;
}

.modal-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--fire-orange);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.modal-cta {
    display: inline-block;
    margin-bottom: 1rem;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Clickable Service Card Styles */
.clickable-service {
    cursor: pointer;
    transition: var(--transition);
}

.clickable-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.clickable-service:hover .service-icon {
    transform: scale(1.1);
}

.clickable-service:hover h3 {
    color: var(--fire-orange);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-scripture {
        padding: 1rem;
    }

    .modal-scripture p {
        font-size: 1rem;
    }

    .modal-section h3 {
        font-size: 1.25rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .modal-steps li {
        padding-left: 2.5rem;
    }

    .modal-steps li:before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }

    .modal-cta {
        width: 100%;
    }
}

