:root {
    --primary: #004d4d;      /* Deep Teal */
    --secondary: #d45d12;    /* Burnt Orange */
    --tertiary: #f9f7f2;     /* Soft Cream */
    --white: #ffffff;
    --text-dark: #2C3E50;
    --border-grey: #D1D8E0;
    --error-red: #C0392B;
    --vibrant-orange: #E67E22;
    --soft-cream: #F9F7F2;
    --text-main: #2C3E50;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --soft-border: rgba(0, 77, 77, 0.08);
}
html {
    scroll-behavior: smooth;
    /* Adjust this value (100px) to match the height of your header */
    scroll-padding-top: 100px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--tertiary); /* Dominant color */
    color: var(--text-main);
    line-height: 1.8;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary); }

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

/* --- Navbar (Clean & Floating) --- */
.site-header {
    background-color: rgba(249, 247, 242, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 60px; transition: var(--transition); }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.btn-nav {
    background: var(--secondary);
    color: white !important;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
}

/* --- Hero (Light & Centered) --- */
.hero { padding: 8rem 0; text-align: center; margin-bottom: 80px }
.badge { color: var(--secondary); font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.hero h1 { font-size: 3.2rem; margin-bottom: 1.5rem; line-height: 1.1; }
.hero p { max-width: 650px; margin: 0 auto 3rem; font-size: 1.25rem; opacity: 0.9; }

.hero-btns { display: flex; gap: 1.5rem; justify-content: center; }
.btn-primary { background: var(--primary); color: white; padding: 1.1rem 2.2rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: var(--transition); }
.btn-secondary { border: 2px solid var(--primary); color: var(--primary); padding: 1rem 2.2rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: var(--transition); }

.btn-primary:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }




/* --- Philosophy (The Definition Element) --- */
.philosophy { padding-bottom: 6rem; }
.philosophy-card {
    background: var(--white);
    padding: 2rem 4rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,77,77,0.04);
    border-bottom: 5px solid var(--secondary);
}
.philosophy-card h2 {
    margin-bottom: 20px
}
.philosophy-card p {
    margin-bottom: 20px
}
/*!* --- Services (Grid) --- *!*/
.services { padding: 3rem 0; background-color: var(--tertiary); }
.section-title { text-align: center; margin-bottom: 2rem; }

/* --- About --- */
.about { padding: 8rem 0; background: var(--tertiary); }
.about-grid { max-width: 800px; }

/* --- Mobile --- */
.menu-toggle { display: none; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .bar { width: 25px; height: 3px; background: var(--primary); }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--tertiary); padding: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
}
/* --- Wavy Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e7d4b2 0%, #a9d9d9 100%); /* Deep Teal Fade */
    padding: 100px 0 160px; /* Extra bottom padding for the wave */
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 1rem; }
.hero p { color: var(--white); opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }

/* The Wave Styling */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill {
    fill: var(--tertiary); /* Fills the wave with your Soft Cream color */
}

/* --- About Section Refined --- */
.about-section {
    padding: 4rem 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Wider container for the About section specifically */
.about-flex-container {
    max-width: 1200px; /* Increased from 1100px */
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stacked for mobile by default */
    gap: 3rem;
    align-items: center;
}

.philosophy-details {
    padding: 6rem 0;
    background-color: var(--white);
}

.detail-block {
    margin-bottom: 2rem;
}

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

.detail-column h3 {
    color: var(--secondary); /* Burnt Orange for sub-headers */
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.styled-list li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Statement Callout Box */
.statement-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--tertiary); /* Soft Cream */
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    font-style: italic;
    text-align: center;
}

/* Women's Interest Grid */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.interest-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--soft-border);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

.interest-item:hover {
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.soft-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--soft-border), transparent);
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .philosophy-details { padding: 4rem 0; }
    .detail-grid { gap: 2rem; }
}
/* Container for the interest section to keep it grounded */
.interests-container {
    max-width: 900px; /* Keeps line length readable */
    margin: 0 auto;
    text-align: left;
}

.interests-container p{
    max-width: 900px; /* Keeps line length readable */
    margin: 0 auto;
    text-align: left;
    margin-bottom: 2rem;
}

.interests-header {
    margin-bottom: 2rem;
}

.interests-header .section-title {
    margin-bottom: 0.5rem;
    text-align: center; /* Aligned with content */
}

/* The List Design */
.interest-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 1rem;
}

.interest-list li {
    font-size: 1.1rem;
    color: var(--text);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 77, 77, 0.05); /* Very subtle separator */
}

/* Custom Bullet Point */
.interest-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary); /* Burnt Orange */
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Desktop Adjustment: Two columns to fill space without looking 'thin' */
@media (min-width: 768px) {
    .interest-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
    }
}

/* --- Single Offering Design --- */
.single-offering-card {
    background: var(--white);
    border-radius: 40px;
    border: 1px solid var(--soft-border);
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 77, 77, 0.03);
    max-width: 1000px;
    margin: 0 auto;
}

.offering-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--tertiary);
    padding-bottom: 2rem;
}

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

.offering-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    max-width: 600px;
    margin: 0 auto;
}

.offering-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* More space for text, less for price box */
    gap: 4rem;
    align-items: start;
}

/* Specs / Pricing Box */
.offering-specs {
    background: var(--tertiary); /* Soft Cream */
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
}

.offering-specs.compact {
    background: var(--tertiary);
    padding: 1.5rem; /* Reduced from 2.5rem */
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-item {
    margin-bottom: 2rem;
}

.spec-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .single-offering-card { padding: 2.5rem; }
    .offering-body { grid-template-columns: 1fr; gap: 2rem; }
    .offering-header h1 { font-size: 2rem; }
}
/* --- Refined Single Offering --- */

/* Tightened Specs Box */
.offering-specs.compact {
    background: var(--tertiary);
    padding: 1.5rem; /* Reduced from 2.5rem */
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-group {
    margin-bottom: 1.5rem; /* Tighter grouping */
}

.spec-item {
    margin-bottom: 1rem; /* Reduced spacing between items */
}

.spec-value {
    font-size: 1.5rem; /* Slightly smaller to fit tighter box */
    color: var(--primary);
}

/* Emphasized Tailored Note */
.tailored-emphasis {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 93, 18, 0.05); /* Very faint orange tint */
    border-left: 3px solid var(--secondary);
    border-radius: 0 10px 10px 0;
}

.tailored-emphasis p {
    margin: 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
}

/* Ensure body alignment is tight */
.offering-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: stretch; /* Makes boxes equal height if content allows */
}

@media (max-width: 768px) {
    .offering-specs.compact {
        padding: 2rem;
        margin-top: 1rem;
    }
}

/* --- Single Offering Card --- */
.single-offering-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.offering-header {
    text-align: center;
    margin-bottom: 2rem;
}

.flagship-tag {
    color: #d45d12;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- The Layout Engine --- */
.offering-body {
    display: flex;
    flex-direction: column; /* Stacked by default for Mobile */
    gap: 2rem;
}

/* Pricing Box Fix */
.offering-pricing {
    background: #f9f7f2;
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    width: 100%; /* Ensure it doesn't shrink */
}

.price-details .label {
    display: block;
    color: #d45d12;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

.price-details .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #004d4d;
    margin-bottom: 1rem;
}

.btn-book {
    background: #004d4d;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    margin-top: 1rem;
    width: 100%; /* Big touch target for mobile */
}

/* Tailored Callout Fix */
.tailored-callout {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #d45d12;
    background: #fdfaf5;
    font-style: italic;
    font-weight: 600;
}

/* --- Desktop Layout --- */
@media (min-width: 992px) {
    .single-offering-card {
        padding: 4rem;
    }

    .offering-body {
        flex-direction: row; /* Side-by-side for Desktop */
        align-items: start;
    }

    .offering-info {
        flex: 1.2;
    }

    .offering-pricing {
        flex: 0.8;
    }

    .btn-book {
        width: auto;
    }
}

/* Photo Side */
.about-image-side {
    flex: 1; /* Takes up less space */
    display: flex;
    justify-content: center;
}

.profile-frame {
    position: relative;
    width: 260px; /* Reduced size */
    height: 260px;
}

.profile-frame::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Text Side */
.about-text-side {
    flex: 2.2; /* Takes up much more width */
    text-align: left;
}

.bio-content p {
    margin-bottom: 1.2rem;
    font-size: 1.15rem; /* Slightly larger text for readability */
    color: #4a4a4a;
    line-height: 1.8;
}

.personal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tertiary);
}

/* --- Responsive Layout Adjustments --- */
@media (min-width: 992px) {
    .about-flex-container {
        flex-direction: row; /* Side-by-side for desktop */
        gap: 5rem;
        align-items: flex-start; /* Aligns photo to the top of the text */
    }

    .profile-frame {
        width: 320px; /* Desktop size (Still smaller than before) */
        height: 320px;
    }

    .about-text-side {
        padding-top: 1rem;
    }
}
.contact-section {
    padding: 80px 20px;
    background-color: var(--soft-cream);
}

#contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Form Styling */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* The Orange Submit Button */
#submit-btn {
    background-color: var(--vibrant-orange);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

#submit-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    padding: 0 20px;
}

/* Success Message Styling */
#success-message {
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

.success-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 15px 0;
}

.success-content .icon {
    font-size: 3rem;
    color: #27ae60;
}

.emergency-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: bold;
}

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

@media (max-width: 600px) {
    .input-row { grid-template-columns: 1fr; }
    #contact-container { padding: 30px; }
}

/* Maintain the reveal animation from previous step */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.8s cubic-bezier(0.165, 0.284, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.site-footer {
    background-color: var(--primary); /* Deep Teal */
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.accreditation-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.pacfa-logo-wrapper {
    background: white; /* Provides a clean base for the logo */
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.pacfa-logo {
    max-width: 220px; /* Standard size for association logos */
    height: auto;
    filter: grayscale(0.2); /* Softens the logo to match site palette */
}

.accreditation-text p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0.2rem 0;
}

.member-number {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--tertiary); /* Soft Cream for visibility */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    .pacfa-logo {
        max-width: 150px;
    }
}
