/* Posteno Edge - Master Design System */

:root {
    /* Primary Palette */
    --charcoal: #1A202C;
    --neo-teal: #00A39E;
    --deep-bg: #111827;
    
    /* Secondary Palette */
    --surface: #F7F9FC;
    --text-secondary: #4A5568;
    --border: #E2E8F0;
    --soft-teal: #E6F6F5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: white;
    color: var(--charcoal);
    line-height: 1.6;
}

header {
    background-color: white;
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 5%;
}

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

.logo {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.logo span { color: var(--neo-teal); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.cta-button {
    background-color: var(--neo-teal);
    color: white !important;
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    font-size: 0.8rem;
}
/* --- HERO SECTION --- */
.hero {
    background-color: var(--deep-bg);
    color: white;
    padding: 7rem 5%;
    text-align: center;
    position: relative; 
    overflow: hidden; /* Crucial: stops the blurred auras from causing scrollbars */
    background-color: #111827;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative; 
    z-index: 10;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--surface);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.secondary-button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
}
/* --- 2. NEW CSS for the Atmospheric Auras --- */
.pe-hero-ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Prevents auras from blocking button clicks */
}

.pe-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px); 
    opacity: 0.8; 
    will-change: transform; 
}

.pe-aura-primary {
    width: 60vw;
    height: 60vw;
    background-color: #1A202C; /* Primary Charcoal */
    top: -10%;
    left: -10%;
    animation: floatAuraPrimary 3s infinite alternate ease-in-out;
}

.pe-aura-accent {
    width: 45vw;
    height: 45vw;
    background-color: #00A39E; /* Neo-Teal */
    bottom: -10%;
    right: -5%;
    opacity: 0.8; 
    animation: floatAuraAccent 2s infinite alternate ease-in-out;
}

/* Keyframe Animations */
@keyframes floatAuraPrimary {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.05); }
    100% { transform: translate(-5%, 5%) scale(0.95); }
}

@keyframes floatAuraAccent {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -10%) scale(1.1); }
    100% { transform: translate(5%, -15%) scale(0.9); }
}
/* --- ADVANTAGE SECTION --- */
.advantage {
    padding: 5rem 5%;
    background-color: var(--surface);
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 3.5rem;
    font-weight: bold;
}

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

.card {
    background-color: white;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-top: 4px solid var(--neo-teal);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
/* --- IMMERSION SECTION --- */
.immersion {
    padding: 6rem 5%;
    background-color: white;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.split-text .subtitle {
    font-size: 1.2rem;
    color: var(--neo-teal);
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.text-link {
    color: var(--neo-teal);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--neo-teal);
    padding-bottom: 2px;
}

.split-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--surface);
    padding: 3.5rem;
    border-left: 4px solid var(--charcoal);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: bold;
}
/* --- TRUST & INVESTMENT SECTION --- */
.trust-investment {
    padding: 6rem 5%;
    background-color: var(--soft-teal);
}

.investment-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.inclusion-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
}

.inclusion-list li::before {
    content: "■";
    color: var(--neo-teal);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

.dark-button {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.investment-card {
    background-color: white;
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--charcoal);
}

.investment-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: bold;
    letter-spacing: 1px;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--charcoal);
    margin: 1rem 0;
    line-height: 1;
}

.price-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
/* --- FOOTER SECTION --- */
.site-footer {
    background-color: var(--charcoal);
    color: white;
    padding: 5rem 5% 2rem;
}

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

.footer-logo {
    color: white;
}

.brand-tagline {
    color: #A0AEC0;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neo-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A0AEC0;
    font-size: 0.85rem;
}
/* --- SUB-PAGE HEADERS --- */
.page-header {
    background-color: var(--charcoal);
    color: white;
    padding: 5rem 5%;
    text-align: center;
    border-bottom: 4px solid var(--neo-teal);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--surface);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* --- SCHEDULE SECTION --- */
.schedule-section {
    padding: 5rem 5%;
    background-color: var(--surface);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.day-card {
    background-color: white;
    padding: 2.2rem;
    border-left: 4px solid var(--neo-teal);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.day-badge {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--neo-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.day-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.day-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}
/* --- PARENT CTA SECTION --- */
.parent-cta {
    background-color: var(--soft-teal);
    text-align: center;
    padding: 5rem 5%;
    border-top: 1px solid var(--border);
}

.parent-cta h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.parent-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* --- APPLICATION FORM SECTION --- */
.application-section {
    padding: 5rem 5%;
    background-color: var(--surface);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 4px;
    border-top: 4px solid var(--charcoal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

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

.institutional-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.institutional-form input,
.institutional-form select,
.institutional-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    box-sizing: border-box;
}

.institutional-form input:focus,
.institutional-form select:focus,
.institutional-form textarea:focus {
    outline: none;
    border-color: var(--neo-teal);
    box-shadow: 0 0 0 2px rgba(0, 163, 158, 0.1);
}

.submit-button {
    background-color: var(--charcoal);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-note {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}
/* --- DESTINATIONS SECTION --- */
.destinations-section {
    padding: 6rem 5%;
    background-color: var(--surface);
}

.dest-card {
    background-color: white;
    padding: 4rem;
    margin-bottom: 3rem;
    border-radius: 4px;
    border-left: 8px solid var(--charcoal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.dest-card:nth-child(2) {
    border-left-color: var(--neo-teal);
}

.dest-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.dest-content h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.dest-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}
/* --- INVESTMENT BREAKDOWN SECTION --- */
.investment-breakdown {
    padding: 6rem 5%;
    background-color: var(--surface);
}

.breakdown-card {
    max-width: 850px;
    margin: 0 auto;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.breakdown-header {
    background-color: var(--charcoal);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-bottom: 4px solid var(--neo-teal);
}

.breakdown-header h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--soft-teal);
    margin-bottom: 1rem;
}

.price-large {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.breakdown-body {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.breakdown-body h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
}

.exclusion-list {
    list-style: none;
    padding: 0;
}

.exclusion-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.exclusion-list li::before {
    content: "○"; /* A hollow circle to contrast the solid square of inclusions */
    color: var(--text-secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.breakdown-footer {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
}
/* --- FAQ SECTION --- */
.faq-section {
    padding: 6rem 5%;
    background-color: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.faq-card {
    background-color: var(--surface);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--charcoal);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
/* --- ABOUT SECTION --- */
.about-section {
    padding: 6rem 5%;
    background-color: white;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

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

.about-highlight {
    position: sticky;
    top: 2rem;
}

.highlight-box {
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 4px;
    border-top: 4px solid var(--neo-teal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.highlight-box h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
/* --- LOGO IMAGE STYLING --- */
.logo img {
    height: 100px; /* Shrinks the logo to fit perfectly in the header */
    width: auto;
    display: block;
}