/* ===== Inner Pages Shared Styles ===== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(17,18,22,.95) 0%, rgba(17,18,22,.6) 40%, rgba(17,18,22,.3) 100%);
}
.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}
.page-hero-desc {
    font-size: 1.15rem;
    color: #c0d0e0;
    max-width: 550px;
    margin-top: 1rem;
}

/* Sections */
.inner-section {
    padding: 5rem 0;
    overflow: hidden;
}
.inner-section.bg-alt {
    background: var(--gradient-section-alt);
}

/* Text colors */
.text-muted-light { color: #b8c4d4; }

/* Image wrapper */
.inner-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.06);
}
.inner-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.inner-image-wrapper:hover img { transform: scale(1.05); }

/* Value / Feature Cards */
.value-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
}
.value-card:hover {
    border-color: rgba(240,165,0,.2);
    transform: translateY(-4px);
}
.value-icon {
    width: 50px; height: 50px;
    background: rgba(240,165,0,.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Step Cards */
.step-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: border-color .3s, transform .3s;
}
.step-card:hover {
    border-color: rgba(240,165,0,.2);
    transform: translateY(-4px);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(240,165,0,.2);
    transform: translateY(-4px);
}
.pricing-card.featured {
    border-color: rgba(240,165,0,.4);
    box-shadow: 0 10px 40px rgba(240,165,0,.1);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .4rem 1.2rem;
    border-radius: 20px;
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.pricing-list li {
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: #b8c4d4;
    font-size: .95rem;
}
.pricing-list li i { margin-right: .5rem; }

/* Event Cards */
.event-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.event-card:hover {
    border-color: rgba(240,165,0,.2);
    transform: translateY(-4px);
}
.event-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.event-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-date-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 12px;
    padding: .6rem .8rem;
    text-align: center;
    line-height: 1;
}
.event-date-badge .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.event-date-badge .month {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}
.event-card-body { padding: 1.5rem; }

/* Badge */
.badge-accent-sm {
    display: inline-block;
    background: rgba(240,165,0,.15);
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    padding: .35em .8em;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Contact Form */
.contact-input {
    background: var(--dark-3) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: .8rem 1rem !important;
    transition: border-color .3s, box-shadow .3s !important;
}
.contact-input:focus {
    border-color: rgba(240,165,0,.4) !important;
    box-shadow: 0 0 0 3px rgba(240,165,0,.15) !important;
}
.contact-input::placeholder { color: #666 !important; }
.form-select.contact-input { color: #b8c4d4 !important; }
.form-label { font-size: .85rem; font-weight: 500; color: #c0d0e0; }

/* Contact Info */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: border-color .3s;
}
.contact-info-card:hover { border-color: rgba(240,165,0,.2); }
.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(240,165,0,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Social circles */
.social-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .3s;
}
.social-circle:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-section-alt);
    border-top: 1px solid rgba(255,255,255,.04);
    overflow: hidden;
}

/* Inner Footer */
.footer-inner-simple {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner-simple a:hover { color: var(--accent) !important; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .page-hero { min-height: 55vh; }
    .page-hero-title { font-size: clamp(2rem, 7vw, 3.5rem); }
    .inner-image-wrapper { height: 350px; }
}

@media (max-width: 767px) {
    .page-hero { min-height: 50vh; padding-bottom: 3rem; }
    .inner-section { padding: 3.5rem 0; }
    .inner-image-wrapper { height: 280px; }
    .event-card-image { height: 200px; }
    .value-card, .step-card, .pricing-card { padding: 1.5rem; }

    .navbar-collapse {
        background: linear-gradient(160deg, rgba(24,25,31,.98), rgba(30,32,40,.98));
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
        margin-top: .8rem;
        backdrop-filter: blur(16px);
        border: 1px solid rgba(240,165,0,.15);
        box-shadow: 0 20px 60px rgba(0,0,0,.6);
    }
    .navbar-collapse .nav-link {
        font-size: 1rem;
        padding: .8rem 1rem !important;
        border-radius: 10px;
        transition: background .3s, color .3s;
        letter-spacing: 1px;
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: rgba(240,165,0,.1);
        color: var(--accent) !important;
    }
    .navbar-collapse .nav-link::after { display: none; }
    .navbar-collapse .nav-item { border-bottom: 1px solid rgba(255,255,255,.05); }
    .navbar-collapse .nav-item:last-child { border-bottom: none; }
    .navbar-collapse .btn-accent {
        width: 100%;
        text-align: center;
        margin-top: .5rem;
        padding: .8rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .page-hero-title { font-size: 2rem; }
    .page-hero-desc { font-size: .95rem; }
    .step-number { font-size: 2.5rem; }
}
