/* /public/css/style.css */

:root {
    --primary-color: #5a2a88; /* Deep Purple */
    --secondary-color: #f3e5f5; /* Light Lavender */
    --accent-color: #7e57c2; /* Medium Purple */
    --text-color: #333;
    --bg-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f9f7fc;
    color: var(--text-color);
    line-height: 1.6;
}

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

header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

main section {
    background: var(--bg-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-details h2, .about-me h2 {
    color: var(--primary-color);
    margin-top: 0;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.detail-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.about-me {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.bio {
    flex: 1;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: #48216b;
}

.btn-secondary {
    background-color: #f1f1f1;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
}


.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* --- Form Styles --- */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

legend {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 0 0.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    box-sizing: border-box; /* Important for padding and width */
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(90, 42, 136, 0.2);
}

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

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.confirmation-box {
    text-align: center;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    background-color: #f1f1f1;
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-me {
        flex-direction: column;
        text-align: center;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Add this to the end of /public/css/style.css */

.form-success-message {
    padding: 1rem;
    background-color: #e6f9e6;
    color: #0d5a0d;
    border: 1px solid #b3e0b3;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
}

/* Add these to the end of /public/css/style.css */

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.step {
    flex: 1;
    text-align: center;
    color: #999;
    font-weight: bold;
    padding: 0.5rem;
    border-bottom: 3px solid transparent;
}
.step.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.step.complete {
    color: #5cb85c; /* A green color for completed steps */
}

.info-box, .summary-box {
    background-color: var(--secondary-color);
    border-left: 5px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
}

.summary-box ul {
    list-style-type: none;
    padding-left: 0;
}
.summary-box li {
    padding: 0.25rem 0;
}
/* Add this to the end of /public/css/style.css */

.btn-disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

/* Add this to the end of /public/css/style.css */

.intro-call-cta {
    text-align: center;
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.intro-call-cta h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.intro-call-cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.intro-call-cta .btn-secondary {
    font-size: 1.1rem;
    padding: 12px 28px;
}