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

body {
    font-family: "Inter", sans-serif;
    background: #f7f5f2;
    color: #1f3a5f;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1f3a5f;
    font-weight: 500;
}
.navbar > span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 600;
    height: 50px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.about-icon-container {
    background: #dce6f2;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-icon {
    height: 50px;
}

.about-img-card {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    line-height: 1.7;
    height: 666px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-style: italic;
    font-size: 22px;
    margin-bottom: 10px;
}

.description {
    max-width: 600px;
    margin: 0 auto 20px;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section.light {
    background: #ffffff;
}

h2 {
    font-family: "Playfair Display", serif;
    margin-bottom: 40px;
    font-size: 32px;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: auto;
}

.about-icon-text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

/* CARD */
.card {
    /* background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.home-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.home-card ul {
    list-style: none;
    margin-top: 10px;
}

.home-card ul li {
    margin: 5px 0;
}

/* TESTIMONIAL */
.testimonial {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: #dce6f2;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn.primary {
    background: #1f3a5f;
    color: white;
}

.btn.secondary {
    background: transparent;
    border: 1px solid #1f3a5f;
    color: #1f3a5f;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

/* FORM PAGE */

.form-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
}

.form-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.care-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.care-form h2 {
    margin-top: 30px;
    font-size: 22px;
    text-align: left;
}

.care-form input,
.care-form textarea,
select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    width: 100%;
}

.care-form textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.full {
    width: 100%;
    margin-top: 20px;
}
/* BUTTON BASE */
.btn {
    display: inline-block;
    padding: 10px 18px; /* reduced from 12x22 */
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none; /* fixes <a> buttons */
    line-height: 1;
    white-space: nowrap;
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* PRIMARY */
.btn.primary {
    background: #1f3a5f;
    color: white;
}

/* SECONDARY */
.btn.secondary {
    background: transparent;
    border: 1px solid #1f3a5f;
    color: #1f3a5f;
}

/* FULL WIDTH (form submit only) */
.btn.full {
    width: 100%;
    padding: 12px; /* slightly larger ONLY for submit */
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
}

.logo {
    font-weight: 600;
    text-decoration: none;
    color: #1f3a5f;
    font-size: 18px;
}
.sub-logo {
    font-weight: 400;
    text-decoration: none;
    color: #1f3a5f;
    font-size: 12px;
}

.btn.primary:hover {
    opacity: 0.9;
}

.btn.secondary:hover {
    background: #1f3a5f;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .about-img {
        width: 90%;
        object-fit: cover;
    }

    /* .navbar {
        flex-direction: column;
        gap: 15px;
    } */
}

/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #eee;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    text-decoration: none;
    color: #1f3a5f;
    font-weight: 500;
}

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

.error-message {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    min-height: 14px;
}

input.error,
textarea.error,
select.error {
    border: 1px solid #c0392b;
    background: #fff5f5;
}

/* LOADER OVERLAY */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 245, 242, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #1f3a5f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1f3a5f;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #c0392b;
}

.about-block {
    margin-bottom: 40px;
}

.about-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.about-list li {
    margin: 8px 0;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 0px;
}

.about-card {
    /* background: white; */
    /* padding: 30px; */
    border-radius: 14px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); */
    line-height: 1.7;
    max-width: 600px;
}

.about-intro {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.about-card p {
    margin-bottom: 15px;
}

.selected-tab {
    border-bottom: 1px solid #1f3a5f;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px; /* adjust based on navbar height */
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.author {
    font-weight: 600;
    font-size: 14px;
    color: #1f3a5f;
}

/* MULTI STEP FORM */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* PROGRESS BAR */
.progress-container {
    max-width: 600px;
    margin: 0 auto 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #1f3a5f;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 8px;
    color: #777;
}

/* NAV BUTTONS */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.form-nav .btn {
    min-width: 120px;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    border: 2px solid #1f3a5f;
}

/* ===== NAVBAR LAYOUT FIX ===== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    position: relative;
    z-index: 1000;
}

/* Fix the span wrapper */
.navbar > span {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Push burger to far right */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 1300px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: white;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 80px 20px;

    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;

    z-index: 2000;
}

.mobile-menu.open {
    right: 0;
}

/* Overlay (we’ll create it via JS) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    z-index: 1500;
    display: none;
}

.overlay.show {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* Full-width buttons in menu */
.mobile-menu .full {
    width: 100%;
    text-align: center;
}
/* ===== PRICING SECTION ===== */

.pricing-section {
    text-align: center;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pricing-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0e9e5;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
    margin: 15px 0 12px;
    font-size: 24px;
}

.pricing-icon {
    font-size: 28px;
    opacity: 0.8;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #1f3a5f;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.featured {
    border: 2px solid #1f3a5f;
    transform: scale(1.03);
}

.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f3a5f;
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.pricing-note {
    margin-top: 28px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

input[type="date"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    padding: 12px 14px;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .featured:hover {
        transform: translateY(-5px);
    }
}

/* MOBILE STYLES */
@media (max-width: 1300px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
        height: 100%;
    }

    .logo {
        font-size: 16px;
    }
    .navbar {
        display: flex;
        flex-direction: row;
    }
    .about-img-card {
        width: 100%;
    }
}

.gold-break {
    height: 2px;
    width: 100px;
    background-color: rgb(165, 140, 0);
}
