/**
 * Lucentra LLC - Pages CSS
 * Styles for About, Leadership, Locations, Testimonials, Contact pages
 */

/* ===========================================
   Page Header (All Internal Pages)
   =========================================== */
.page-header {
    background: linear-gradient(135deg, #1A365D 0%, #0F2341 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================================
   Section Styles
   =========================================== */
.section-light {
    background: #f8fafc;
    padding: 80px 0;
}

.section-white {
    background: white;
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #1A365D 0%, #0F2341 100%);
    padding: 80px 0;
    color: white;
}

.section-stats {
    background: linear-gradient(135deg, #1A365D 0%, #0F2341 100%);
    padding: 80px 0;
    color: white;
}

.section-cta {
    background: linear-gradient(135deg, #1A365D 0%, #D4A84B 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 1rem;
}

.section-dark .section-heading {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   Content Grid Layouts
   =========================================== */
.content-grid,
.content-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-grid-reverse .content-image {
    order: -1;
}

.content-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* ===========================================
   Mission Vision Cards
   =========================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4A84B 0%, #c49a3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon svg {
    stroke: white;
}

.mv-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===========================================
   Timeline
   =========================================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #D4A84B 0%, #1A365D 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #D4A84B;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D4A84B;
}

.timeline-content h3 {
    color: #1A365D;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   Feature Cards (Why Choose Us)
   =========================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-top-color: #D4A84B;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4A84B;
    opacity: 0.3;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: #1A365D;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ===========================================
   Stats Grid
   =========================================== */
.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-card-large {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.stat-card-large .stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #D4A84B;
}

.stat-card-large .stat-unit {
    font-size: 1.25rem;
    color: white;
    margin-top: 8px;
}

.stat-card-large .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.stat-card-large .stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

/* ===========================================
   Executive Profiles (Leadership)
   =========================================== */
.executive-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid #e2e8f0;
}

.executive-profile:last-child {
    border-bottom: none;
}

.executive-image {
    text-align: center;
}

.executive-image svg {
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.executive-info h2 {
    color: #1A365D;
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.executive-info h3 {
    color: #D4A84B;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.executive-links {
    margin-bottom: 20px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077b5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: #005885;
}

.linkedin-link svg {
    width: 18px;
    height: 18px;
}

.executive-bio {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.executive-credentials {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.credential-item {
    margin-bottom: 12px;
    color: #64748b;
    line-height: 1.6;
}

.credential-item strong {
    color: #1A365D;
}

/* ===========================================
   Advisory Board
   =========================================== */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advisor-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.advisor-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.advisor-title {
    color: #D4A84B;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.advisor-bio {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================================
   Office Locations
   =========================================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.region-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.region-card h3 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.region-count {
    color: #D4A84B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.region-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.office-detail {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.office-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.office-flag {
    font-size: 2.5rem;
}

.office-badge {
    background: #D4A84B;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.office-detail-header h2 {
    color: #1A365D;
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.office-detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-block h4 {
    color: #1A365D;
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.office-map iframe {
    border-radius: 8px;
    width: 100%;
}

.compact-offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.office-compact {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.office-flag-small {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.office-compact h3 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.office-address-compact,
.office-contact-compact {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ===========================================
   Contact Page
   =========================================== */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-method-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A365D 0%, #0F2341 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    stroke: #D4A84B;
}

.contact-method-card h3 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-method-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.btn-link {
    color: #D4A84B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: #b8943f;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form-content h2 {
    color: #1A365D;
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-form-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-info-list {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
}

.info-item {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #1A365D;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: #1A365D;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4A84B;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-group-checkbox label {
    font-weight: 400;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group-checkbox a {
    color: #D4A84B;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 20px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.office-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.office-card h3 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.office-address,
.office-contact {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.office-contact small {
    color: #94a3b8;
}

/* ===========================================
   Testimonials
   =========================================== */
.satisfaction-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.satisfaction-stat {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-value-large {
    font-size: 3rem;
    font-weight: 700;
    color: #D4A84B;
}

.satisfaction-stat p {
    color: #1A365D;
    font-weight: 600;
    margin-top: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.author-info h4 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.company-name {
    color: #D4A84B;
    font-weight: 600;
}

.location {
    color: #94a3b8;
    font-size: 0.85rem;
}

.testimonial-rating {
    margin-top: 16px;
    color: #D4A84B;
}

.testimonial-rating span {
    color: #1A365D;
    font-weight: 600;
    margin-left: 8px;
}

/* ===========================================
   CTA Section
   =========================================== */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-outline-white {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid white;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #1A365D;
}

/* ===========================================
   Corporate Responsibility
   =========================================== */
.responsibility-pillars {
    margin-top: 24px;
}

.pillar-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #D4A84B;
}

.pillar-item h4 {
    color: #1A365D;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pillar-item p {
    color: #64748b;
    line-height: 1.7;
}

/* ===========================================
   Navbar Solid (Internal Pages)
   =========================================== */
.navbar-solid {
    background: #1A365D !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-solid .logo-text {
    color: white;
}

.navbar-solid .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-solid .nav-link:hover,
.navbar-solid .nav-link.active {
    color: #D4A84B;
}

/* ===========================================
   Responsive Styles
   =========================================== */
@media (max-width: 1200px) {
    .office-detail-content {
        grid-template-columns: 1fr;
    }

    .office-map {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .content-grid,
    .content-grid-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid-reverse .content-image {
        order: 0;
    }

    .mission-vision-grid,
    .why-choose-grid,
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid,
    .contact-methods-grid,
    .offices-grid,
    .compact-offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .executive-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-vision-grid,
    .why-choose-grid,
    .stats-grid-large,
    .testimonials-grid,
    .advisors-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid,
    .contact-methods-grid,
    .offices-grid,
    .compact-offices-grid,
    .satisfaction-stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline-year {
        left: -40px;
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .office-info {
        grid-template-columns: 1fr;
    }
}
