/* Main CSS for Corporate Pension Compliance Audits Template */

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --primary-blue: #2c5aa0;
    --primary-gold: #d4af37;
    --primary-green: #2e7d52;
    --primary-gray: #4a5568;
    --primary-burgundy: #722f37;
    
    /* Light Shades */
    --light-blue: #e3f2fd;
    --light-gold: #fdf6e3;
    --light-green: #e8f5e8;
    --light-gray: #f7fafc;
    --light-burgundy: #faf5f5;
    
    /* Dark Shades */
    --dark-blue: #1a365d;
    --dark-gold: #b8860b;
    --dark-green: #1b4332;
    --dark-gray: #2d3748;
    --dark-burgundy: #4a1c23;
    
    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;
    
    /* Background Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    --gradient-secondary: linear-gradient(135deg, var(--primary-gold), var(--primary-burgundy));
    --gradient-hero: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(46, 125, 82, 0.8));
}

/* Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 12px !important;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-blue) !important;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../EXE_images/edwb_hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--light-blue);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-desc {
    color: var(--text-white);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    top: 10%;
    right: 10%;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    bottom: 15%;
    left: 5%;
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.custom-card {
    background: var(--text-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-card .card-body {
    padding: 2rem;
}

.custom-card .card-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.custom-card .card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Cards */
.services-card {
    text-align: center;
    position: relative;
}

.services-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: var(--text-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--light-blue);
}

.team-name {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--text-secondary);
    font-style: italic;
}

/* Reviews/Testimonials */
.review-card {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    text-align: center;
    border: none;
}

.review-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--primary-blue);
    font-weight: 600;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: serif;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--text-white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 90, 160, 0.3);
}

/* FAQ Section */
.faq-item {
    background: var(--text-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    background: var(--light-blue);
    padding: 1.5rem;
    margin: 0;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--primary-gray);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-section {
    background: var(--light-gray);
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.bg-secondary-gradient {
    background: var(--gradient-secondary);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Space Page */
#space {
    min-height: 80vh;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 2rem 0;
} 