/* 
   PensionPro Desk - Main CSS File
   Pension Plan Document Preparation Desk Template
   Version: 1.0
*/

/* ====== ROOT VARIABLES ====== */
:root {
    /* Primary Colors */
    --primary-color: #4A6DA7; /* Soft Blue */
    --secondary-color: #8BC5B0; /* Mint Green */
    --accent-color-1: #F2D1C9; /* Pale Pink */
    --accent-color-2: #E8C07D; /* Soft Gold */
    --accent-color-3: #B8B3E9; /* Lavender */
    
    /* Shades */
    --primary-dark: #385180;
    --primary-light: #7088B8;
    --secondary-dark: #6BA48F;
    --secondary-light: #A6D6C6;
    
    /* Neutrals */
    --dark: #333333;
    --medium: #666666;
    --light: #f8f9fa;
    --white: #ffffff;
    
    /* Utility */
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ====== GENERAL STYLES ====== */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent-color-2);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h5 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.bg-light {
    background-color: var(--light);
}

/* ====== HEADER ====== */
.header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-dark);
}

.nav-link {
    font-weight: 500;
    padding: 10px 15px;
    color: var(--dark);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ====== HERO SECTION ====== */
.hero-section {
    padding: 0;
    position: relative;
    height: 600px;
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content h4 {
    font-size: 22px;
    color: var(--accent-color-2);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

.swiper-pagination-bullet {
    background: var(--white);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color-2);
}

/* ====== ABOUT SECTION ====== */
.about-feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 30px;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-feature h4 {
    margin-bottom: 15px;
}

/* ====== SERVICES SECTION ====== */
.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--white);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    margin-bottom: 20px;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
    position: relative;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light);
}

/* ====== FEATURES SECTION ====== */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .feature-icon {
    background-color: var(--accent-color-1);
    color: var(--dark);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ====== PRICE PLAN SECTION ====== */
.price-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--white);
    transition: var(--transition);
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-header {
    padding: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.price-header h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
}

.price-body {
    padding: 25px;
}

.price-body p {
    margin-bottom: 20px;
}

.price-body ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.price-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
    position: relative;
    padding-left: 25px;
}

.price-body ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 8px;
}

/* ====== TEAM SECTION ====== */
.team-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--white);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* ====== REVIEWS SECTION ====== */
.reviews-swiper {
    padding: 30px 0;
}

.review-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 15px;
    text-align: center;
}

.review-text {
    position: relative;
    padding: 0 15px;
    margin-bottom: 20px;
}

.review-text:before,
.review-text:after {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color-2);
    position: absolute;
    font-size: 24px;
}

.review-text:before {
    left: 0;
    top: 0;
}

.review-text:after {
    content: '\f10e';
    right: 0;
    bottom: 0;
}

.review-author {
    font-weight: 700;
    color: var(--primary-dark);
}

/* ====== CORE INFO SECTION ====== */
.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ====== CONTACT SECTION ====== */
.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-control {
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin-bottom: 20px;
}

/* ====== BLOG SECTION ====== */
.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-link {
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.blog-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.blog-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ====== FOOTER ====== */
.footer-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-section h4,
.footer-section h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color-2);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ====== PAGE BANNER ====== */
.page-banner {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner .row {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 10px;
}

/* ====== ADDITIONAL PAGES STYLES ====== */
/* Process Cards */
.process-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-color-1);
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Document Cards */
.document-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.document-card:hover {
    transform: translateY(-10px);
}

.document-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Expert Guidance */
.expert-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.expert-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.expert-item h4:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Resource Cards */
.resource-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 36px;
    color: var(--accent-color-2);
    margin-right: 20px;
}

.resource-content h4 {
    margin-bottom: 10px;
}

/* Quality Cards */
.quality-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-10px);
}

.quality-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Expertise Items */
.expertise-item {
    display: flex;
    align-items: flex-start;
}

.expertise-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Prep Cards */
.prep-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.prep-card:hover {
    transform: translateY(-10px);
}

.prep-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.prep-note {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--accent-color-2);
}

/* Certification Cards */
.certification-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-10px);
}

.certification-image {
    height: 200px;
    overflow: hidden;
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.certification-card:hover .certification-image img {
    transform: scale(1.1);
}

.certification-content {
    padding: 20px;
    text-align: center;
}

/* Education Cards */
.education-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-icon {
    font-size: 36px;
    color: var(--accent-color-3);
}

/* Partner Cards */
.partner-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Office Hours Section */
.office-hours-section {
    padding: 60px 0;
}

.hours-card, .appointment-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.hours-card h3, .appointment-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.hours-list {
    list-style: none;
    padding-left: 0;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--light);
    display: flex;
    justify-content: space-between;
}

.hours-list li span {
    font-weight: 600;
}

/* Add background images for hero slides */
.hero-slide:nth-child(1) {
    background-image: url('../NEU_images/hero-1.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('../NEU_images/hero-2.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('../NEU_images/hero-3.jpg');
}

/* Add background images for page banners */
.page-banner-2 {
    background-image: url('../NEU_images/page-banner-2.jpg');
}

.page-banner-3 {
    background-image: url('../NEU_images/page-banner-3.jpg');
}

/* Space page style */
#space {
    min-height: 500px;
} 