/* Pension Health Check Kiosks - Main CSS */

/* Color Palette Variables */
:root {
    --primary-color: #6C7B95;
    --secondary-color: #B8A8C8;
    --accent-color: #D4AFDF;
    --neutral-color: #F5F3F4;
    --highlight-color: #9BB5A6;
    
    /* Light/Dark Shades */
    --primary-light: #8A9BB8;
    --primary-dark: #4F5A6F;
    --secondary-light: #D1C6DA;
    --secondary-dark: #9587A1;
    --accent-light: #E4C8ED;
    --accent-dark: #C088CC;
    --neutral-light: #FFFFFF;
    --neutral-dark: #E8E6E7;
    --highlight-light: #B5CFC0;
    --highlight-dark: #7EA089;
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--primary-dark);
    background-color: var(--neutral-light);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--neutral-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--neutral-light);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--neutral-light);
}

/* Header Styles */
.navbar {
    background-color: var(--neutral-light);
    box-shadow: 0 2px 10px rgba(108, 123, 149, 0.1);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--accent-light);
    color: var(--primary-dark) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--neutral-color) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 123, 149, 0.1), rgba(212, 175, 223, 0.1));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape-blob-1, .shape-blob-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--highlight-color), var(--accent-color));
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-blob-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(108, 123, 149, 0.2);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--neutral-color) !important;
}

/* Card Styles */
.feature-card, .service-card, .info-card, .review-card {
    background: var(--neutral-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 5px 15px rgba(108, 123, 149, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--neutral-dark);
}

.feature-card:hover, .service-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 123, 149, 0.15);
}

.feature-card i, .info-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-top: var(--spacing-sm);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    background: var(--neutral-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 3px 10px rgba(108, 123, 149, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--accent-light);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
    min-width: 60px;
}

/* Price Plan Cards */
.price-plan-card {
    background: var(--neutral-light);
    border: 2px solid var(--neutral-dark);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.price-plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(108, 123, 149, 0.2);
}

.price-plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.price-plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.price-plan-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.price-plan-card li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--neutral-dark);
}

.price-plan-card li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    border: 4px solid var(--accent-light);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--secondary-color);
    font-style: italic;
}

/* Reviews Slider */
.reviews-swiper {
    padding: var(--spacing-md) 0;
}

.review-card {
    max-width: 400px;
    margin: 0 auto;
}

.stars {
    color: #ffc107;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.review-card h5 {
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
}

/* Gallery Section */
.gallery-item {
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(108, 123, 149, 0.15);
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    background-color: var(--neutral-light);
    color: var(--primary-color);
    font-weight: 500;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
overflow-x: hidden;
    background-color: var(--neutral-light);
    padding: var(--spacing-md);
}

/* Blog Section */
.blog-card {
    background: var(--neutral-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(108, 123, 149, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 123, 149, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-content h4 {
    margin-bottom: var(--spacing-sm);
}

.blog-content p {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

/* Contact Form */
.contact-form {
    background: var(--neutral-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(108, 123, 149, 0.1);
}

.form-control {
    border: 2px solid var(--neutral-dark);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 123, 149, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--neutral-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer h5, .footer h6 {
    color: var(--neutral-light);
    margin-bottom: var(--spacing-md);
}

.footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-light);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: var(--spacing-xs);
}

.footer hr {
    border-color: var(--accent-light);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--neutral-color);
    padding: var(--spacing-sm) 0;
    margin-top: 70px;
}

.breadcrumb-section img {
    max-height: 60px;
    width: auto;
    border-radius: var(--border-radius);
}

/* Additional Page Styles */
.benefit-card, .recognition-item, .support-feature, .security-feature, 
.ux-feature, .roadmap-item, .quality-item, .expansion-item {
    background: var(--neutral-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 3px 10px rgba(108, 123, 149, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover, .recognition-item:hover, .support-feature:hover,
.security-feature:hover, .ux-feature:hover, .roadmap-item:hover,
.quality-item:hover, .expansion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 123, 149, 0.12);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .swiper-pagination {
        display: none;
    }
    
    body {
overflow-x: hidden;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
} 