@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@500;700;900&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: #f8f9fa;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn, .tagline {
    font-family: 'Roboto', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style-position: inside;
}

p {
    font-size: 1.05rem;
}

:root {
    --primary-red: #d92027;
    --fire-orange: #ff6b00;
    --flame-yellow: #ffb703;
    --dark-red: #8a0b0b;
    --dark-bg: #111111;
    --light-gray: #ffffff;
    --mid-gray: #e9ecef;
    --gradient-fire: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 50%, var(--fire-orange) 100%);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 45px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 15px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 45px; }

.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 60px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 60px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.d-block { display: block; }
.fw-bold { font-weight: 700; }
.border-top { border-top: 1px solid var(--mid-gray); }

.page-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--dark-red);
    text-transform: uppercase;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.subtitle-text {
    font-size: 1.1rem;
    color: #444;
    max-width: 850px;
    margin: 0 auto;
}

.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    text-align: left;
}

.btn-wrapper {
    margin-top: 35px;
}

.btn {
    padding: 14px 32px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-fire {
    background: var(--gradient-fire);
    color: #fff;
    box-shadow: 0 4px 10px rgba(217, 32, 39, 0.3);
}

.btn-fire:hover {
    box-shadow: 0 8px 20px rgba(217, 32, 39, 0.4);
    opacity: 0.95;
}

.btn-yellow {
    background-color: var(--flame-yellow);
    color: #111;
}

.btn-yellow:hover {
    background-color: #e6a500;
}

.btn-massive {
    font-size: 1.25rem;
    padding: 18px 40px;
    border-radius: 6px;
}

.top-bar {
    background: var(--dark-bg);
    color: #fff;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 3px solid var(--fire-orange);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .social-icons a {
    color: var(--flame-yellow);
    margin-right: 15px;
    font-size: 1.3rem;
}

.top-bar .social-icons a:hover {
    color: var(--fire-orange);
}

.top-bar .tagline {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.top-bar .phone a {
    font-weight: 900;
    color: var(--flame-yellow);
}

.top-bar .phone a:hover {
    color: var(--fire-orange);
}

.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 900;
    color: #111;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary-red);
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 8px 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 260px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-top: 4px solid var(--primary-red);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.dropdown-content a {
    color: #111;
    padding: 16px 20px;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--mid-gray);
    text-transform: uppercase;
}

.dropdown-content a:hover {
    background: var(--gradient-fire);
    color: #fff;
    padding-left: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.fire-banner {
    background: var(--gradient-fire);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.fire-banner h1, .fire-banner p {
    color: #fff;
}

.img-full {
    width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.page-content {
    padding: 45px 20px;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

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

.program-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid var(--fire-orange);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(217, 32, 39, 0.15);
    border-bottom: 5px solid var(--primary-red);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--dark-red);
    text-transform: uppercase;
}

.card-body p {
    color: #444;
    font-weight: 600;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
}

.split-image, .split-content {
    flex: 1;
    min-width: 320px;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(217, 32, 39, 0.2);
}

.align-center {
    align-items: center;
}

.legacy-section {
    background-color: var(--dark-red);
    color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid var(--dark-bg);
    border-top: 6px solid var(--flame-yellow);
}

.legacy-section h1, .legacy-section p {
    color: #fff;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    width: calc(33.333% - 22px);
    min-width: 280px;
    text-align: left;
    border-radius: 8px;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: var(--gradient-fire);
}

.feature-box:hover h3, .feature-box:hover p {
    color: #fff;
}

.feature-box.bottom-center {
    width: calc(40% - 22px);
}

.feature-box h3 {
    font-weight: 900;
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #111;
    text-transform: uppercase;
}

.info-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 6px solid var(--fire-orange);
}

.info-card.bg-dark {
    background-color: var(--dark-bg);
    color: #fff;
    border-left: 6px solid var(--flame-yellow);
}

.info-card.bg-dark h1, .info-card.bg-dark h2 { color: #fff; }
.info-card.bg-dark p { color: #ddd; }
.info-card.bg-dark .lead-text { color: #fff; }

.styled-list {
    margin-left: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.styled-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 5px solid var(--flame-yellow);
    padding: 20px;
    border-radius: 6px;
    margin: 22px 0;
}

.highlight-box strong {
    color: #856404;
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.highlight-red {
    background: var(--gradient-fire);
    color: #fff;
    padding: 12px;
    font-weight: 900;
    text-align: center;
    border-radius: 6px 6px 0 0;
    letter-spacing: 1px;
}

.highlight-yellow {
    background-color: var(--flame-yellow);
    color: #000;
    padding: 15px;
    font-weight: 900;
    text-align: center;
    border-radius: 0 0 6px 6px;
}

.alert-text {
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.1rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.payment-box {
    background: #fff;
    border: 2px solid var(--primary-red);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(217, 32, 39, 0.08);
}

.payment-box i {
    font-size: 2.5rem;
    color: var(--fire-orange);
    margin-bottom: 15px;
}

.payment-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #111;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.contact-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--mid-gray);
    border-bottom: 6px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--fire-orange);
}

.contact-card i.main-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #111;
    text-transform: uppercase;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.black-icon {
    color: #fff;
    background: var(--dark-bg);
    font-size: 1.4rem;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.black-icon:hover {
    background: var(--gradient-fire);
    transform: scale(1.1);
}

.pre-footer {
    background: var(--dark-bg);
    padding: 60px 0;
    color: #fff;
    border-top: 5px solid var(--fire-orange);
}

.pre-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pf-logo img {
    max-height: 100px;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 0, 0.2));
}

.pf-contact p {
    font-weight: 700;
    margin: 8px 0;
    font-size: 1.15rem;
    color: #fff;
}

.red-icon {
    color: var(--fire-orange);
    margin-right: 12px;
}

.pf-contact a.red-text {
    color: #fff;
    transition: color 0.2s;
}

.pf-contact a.red-text:hover {
    color: var(--flame-yellow);
    text-decoration: underline;
}

.pf-social a {
    font-size: 1.8rem;
    margin-left: 20px;
    padding: 8px;
    transition: 0.2s;
    color: #fff;
}

.pf-social a:hover {
    transform: translateY(-3px);
    color: var(--fire-orange);
}

.footer-nav {
    background: var(--gradient-fire);
    padding: 25px 0;
}

.footer-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.f-menu {
    display: flex;
    gap: 25px;
}

.f-menu a {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.f-menu a:hover {
    color: var(--flame-yellow);
}

.copyright-bar {
    background-color: #000;
    padding: 20px 0;
    font-size: 0.95rem;
    color: #888;
    text-align: center;
    font-weight: 600;
}

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 30px;
    background: var(--gradient-fire);
    color: white;
    border: 3px solid #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 99;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .feature-box, .feature-box.bottom-center { width: calc(50% - 22px); }
    .split-section { flex-direction: column; }
    .split-content { text-align: center; }
    .layout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .programs-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .top-bar-inner, .pre-footer-inner, .footer-nav-inner { flex-direction: column; text-align: center; gap: 20px; }
    .pf-social a { margin: 0 8px; }
    .f-menu { flex-direction: column; gap: 15px; }
    .feature-box, .feature-box.bottom-center { width: 100%; }
    .info-card { padding: 25px 15px; }
}
