* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b3a4b 0%, #274c5b 50%, #1b3a4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

.hero-tagline {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #7ec8e3;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-primary {
    background: #7ec8e3;
    color: #1b3a4b;
}

.btn-primary:hover {
    background: #6ab8d6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Services */
.services {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

.service-card {
    display: block;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: #7ec8e3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1b3a4b;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About */
.about {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.verse {
    font-style: italic;
    color: #1b3a4b;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(126, 200, 227, 0.1);
    border-radius: 8px;
    border-left: 3px solid #7ec8e3;
    text-align: left;
}

.verse cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b3a4b;
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.contact-email {
    background: #1b3a4b;
    color: #ffffff;
}

.contact-email:hover {
    background: #274c5b;
    transform: translateY(-2px);
}

.contact-text {
    background: #25D366;
    color: #ffffff;
}

.contact-text:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, #1b3a4b 0%, #274c5b 50%, #1b3a4b 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.service-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ffffff;
}

.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.service-details {
    padding: 4rem 2rem;
}

.details-content {
    max-width: 650px;
    margin: 0 auto;
}

.details-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.details-content ul {
    list-style: none;
    padding: 0;
}

.details-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}

.details-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #7ec8e3;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #1b3a4b;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b3a4b;
    margin-bottom: 0.3rem;
}

.modal p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}

.modal input:focus,
.modal textarea:focus {
    outline: none;
    border-color: #7ec8e3;
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #1fb855;
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    color: #25D366;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
}

.form-error {
    text-align: center;
    color: #e74c3c;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 5rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }

    .services, .about, .contact {
        padding: 3rem 1.5rem;
    }

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

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

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

    .service-card {
        padding: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .verse {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .service-hero {
        padding: 3rem 1.5rem;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-details {
        padding: 3rem 1.5rem;
    }

    .modal {
        padding: 2rem 1.5rem;
    }
}
