/* Chamberlain University Landing Page Styles */

:root {
    --cu-navy: #003057;
    --cu-navy-dark: #001f3a;
    --cu-gold: #c5a572;
    --cu-gold-light: #d4b896;
    --cu-white: #ffffff;
    --cu-gray: #6c757d;
    --cu-light: #f4f6f8;
    --cu-shadow: 0 8px 30px rgba(0, 48, 87, 0.12);
}

/* Override theme accent */
.primary-bg { background: var(--cu-navy) !important; }
.header-top-area i,
.header-top-area a:hover,
.nav > li.active > a,
.logo h1 a span,
.address-right a:hover,
.main-menu li:hover > a,
.main-menu li > .sub-menu li:hover > a,
.caption h2 span,
.btn-1,
.primary-btn,
.section-title .star,
.content-img:after,
.counter-icon i { color: var(--cu-gold); border-color: var(--cu-gold); }
.btn-1, .primary-btn { background: var(--cu-navy); }
.btn-1:hover, .primary-btn:hover { background: var(--cu-navy-dark); color: #fff; }
.slider-area.owl-carousel .owl-nav div:hover { background: var(--cu-navy); }

/* Sticky header */
header#home { position: relative; z-index: 999; }
.sticky-nav .navbar.gray-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--cu-shadow);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Top bar */
.header-top-area {
    background: var(--cu-navy-dark);
    font-size: 13px;
}
.header-top-area .apply-now-link {
    background: var(--cu-gold);
    color: var(--cu-navy-dark) !important;
    padding: 4px 14px;
    border-radius: 3px;
    font-weight: 600;
    margin-left: 10px;
}
.header-top-area .apply-now-link:hover {
    background: var(--cu-gold-light);
    color: var(--cu-navy-dark) !important;
}

/* Navbar */
.navbar.gray-bg {
    background: var(--cu-white) !important;
    border-bottom: 3px solid var(--cu-gold);
    transition: all 0.3s ease;
}
.navbar-brand {
    border: none !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    font-size: 20px !important;
    color: var(--cu-navy) !important;
}
.navbar-brand .school-logo {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}
.navbar-brand span { color: var(--cu-gold) !important; }
.main-menu li a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.main-menu li a:hover { color: var(--cu-navy) !important; }
.main-menu .nav-cta a {
    background: var(--cu-navy);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    margin-left: 10px;
}
.main-menu .nav-cta a:hover {
    background: var(--cu-gold) !important;
    color: var(--cu-navy-dark) !important;
}

/* Hero section */
.hero-landing {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 48, 87, 0.88) 0%, rgba(0, 31, 58, 0.75) 100%);
    z-index: 1;
}
.hero-landing .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
    padding: 80px 0;
}
.hero-landing .hero-badge {
    display: inline-block;
    background: var(--cu-gold);
    color: var(--cu-navy-dark);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.hero-landing h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-landing h1 span { color: var(--cu-gold); }
.hero-landing p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-block;
    background: var(--cu-gold);
    color: var(--cu-navy-dark);
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-hero-primary:hover {
    background: #fff;
    color: var(--cu-navy);
    transform: translateY(-2px);
}
.btn-hero-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--cu-navy);
}

/* Slider enhancements */
.slider-area .banner-overlay {
    background: linear-gradient(135deg, rgba(0, 48, 87, 0.85) 0%, rgba(0, 31, 58, 0.7) 100%);
    opacity: 1;
}
.caption h2 span { color: var(--cu-gold) !important; }
.caption .btn-hero-primary { margin-top: 20px; }

/* Section headings */
.landing-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.landing-section-title .subtitle {
    color: var(--cu-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.landing-section-title h2 {
    font-size: 36px;
    color: var(--cu-navy);
    margin-bottom: 15px;
}
.landing-section-title p {
    color: var(--cu-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}
.landing-section-title .title-line {
    width: 60px;
    height: 3px;
    background: var(--cu-gold);
    margin: 15px auto 0;
}

/* Feature cards */
.features-area { background: var(--cu-light); }
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--cu-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 48, 87, 0.18);
    border-bottom-color: var(--cu-gold);
}
.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--cu-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.feature-card .feature-icon i {
    font-size: 28px;
    color: var(--cu-gold);
}
.feature-card h3 {
    font-size: 20px;
    color: var(--cu-navy);
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--cu-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* About section */
.about-landing .about-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cu-shadow);
}
.about-landing .about-img-wrap img {
    width: 100%;
    display: block;
}
.about-landing .about-img-wrap .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--cu-gold);
    color: var(--cu-navy-dark);
    padding: 25px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--cu-shadow);
}
.about-landing .experience-badge h3 {
    font-size: 36px;
    margin: 0;
    line-height: 1;
}
.about-landing .experience-badge p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.about-landing .about-text h2 {
    font-size: 32px;
    color: var(--cu-navy);
    margin-bottom: 20px;
}
.about-landing .about-text .subtitle {
    color: var(--cu-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}
.about-landing .about-list {
    margin: 25px 0;
}
.about-landing .about-list li {
    padding: 8px 0;
    color: var(--cu-gray);
    font-size: 15px;
}
.about-landing .about-list li i {
    color: var(--cu-gold);
    margin-right: 10px;
    width: 20px;
}

/* Programs */
.programs-area { background: #fff; }
.program-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cu-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.program-card:hover { transform: translateY(-5px); }
.program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.program-card .program-body {
    padding: 25px;
    background: #fff;
}
.program-card .program-body h3 {
    font-size: 20px;
    color: var(--cu-navy);
    margin-bottom: 10px;
}
.program-card .program-body p {
    color: var(--cu-gray);
    font-size: 14px;
    margin-bottom: 15px;
}
.program-card .program-link {
    color: var(--cu-navy);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.program-card .program-link i { margin-left: 5px; transition: margin 0.3s; }
.program-card:hover .program-link i { margin-left: 10px; }
.program-card .program-link:hover { color: var(--cu-gold); }

/* Stats */
.stats-area {
    background: url('../img/funfact-bg.jpg') no-repeat fixed center center / cover;
    position: relative;
    padding: 80px 0;
}
.stats-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 87, 0.9);
}
.stats-area .container { position: relative; z-index: 2; }
.stat-item { text-align: center; padding: 20px; }
.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--cu-gold);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* CTA banner */
.cta-area {
    background: linear-gradient(135deg, var(--cu-navy) 0%, var(--cu-navy-dark) 100%);
    padding: 70px 0;
    text-align: center;
}
.cta-area h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}
.cta-area p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials-area { background: var(--cu-light); }
.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--cu-shadow);
    margin-bottom: 30px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--cu-gold);
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0.4;
    font-family: Georgia, serif;
}
.testimonial-card p {
    font-style: italic;
    color: var(--cu-gray);
    font-size: 15px;
    line-height: 1.8;
    padding-top: 20px;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cu-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cu-gold);
    font-weight: 700;
    font-size: 18px;
}
.testimonial-author h4 {
    font-size: 16px;
    color: var(--cu-navy);
    margin: 0 0 3px;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--cu-gold);
}

/* News & events preview */
.news-preview-area { background: #fff; }
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cu-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.news-card:hover { transform: translateY(-5px); }
.news-card .news-img {
    height: 180px;
    overflow: hidden;
}
.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-card .news-body { padding: 25px; }
.news-card .news-date {
    color: var(--cu-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-card h3 {
    font-size: 18px;
    color: var(--cu-navy);
    margin: 10px 0;
}
.news-card p {
    color: var(--cu-gray);
    font-size: 14px;
    margin: 0;
}

/* Footer enhancements */
.footer-top-area {
    background: var(--cu-navy-dark) !important;
}
.footer-top-area .footer-widget h2 {
    color: var(--cu-gold);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-top-area .footer-widget p,
.footer-top-area .footer-widget li a {
    color: rgba(255, 255, 255, 0.75) !important;
}
.footer-top-area .footer-widget li a:hover { color: var(--cu-gold) !important; }
.footer-top-area .footer-logo h1 a {
    color: #fff !important;
    border: none !important;
    font-size: 22px !important;
    padding: 0 !important;
}
.footer-top-area .footer-logo h1 a span { color: var(--cu-gold) !important; }
.footer-social ul li a {
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social ul li a:hover {
    background: var(--cu-gold);
    color: var(--cu-navy-dark) !important;
}
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.footer-contact-item i {
    color: var(--cu-gold);
    font-size: 16px;
    margin-top: 4px;
    width: 20px;
}
.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}
.footer-area {
    background: #001528 !important;
}
.footer-area .copyright {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px;
}

/* Bradcam */
.bradcam-area {
    background: url('../img/bradcam.jpg') no-repeat center center / cover !important;
    position: relative;
}
.bradcam-area .container { position: relative; z-index: 2; }

/* Responsive */
@media (max-width: 991px) {
    .hero-landing h1 { font-size: 38px; }
    .hero-landing { min-height: 70vh; }
    .about-landing .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    .about-landing .experience-badge h3 { font-size: 28px; }
}
@media (max-width: 767px) {
    .hero-landing h1 { font-size: 30px; }
    .hero-landing p { font-size: 16px; }
    .landing-section-title h2 { font-size: 28px; }
    .stat-item .stat-number { font-size: 36px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { text-align: center; }
}
