/* ============================================
   ABOUT PAGE REDESIGN - MODERN STYLES
   ============================================ */

/* CSS Variables - Extended from original */
:root {
    --dark-blue: #28344a;
    --dark-green: #3a4f5f;
    --light-blue: #8fa4c4;
    --gold: #bfa25a;
    --white: #ffffff;
    --gray: #7d8590;
    --light-gray: #e9ecef;
    --black: #1c1f26;
    --cream: #f2ebe3;
    --charcoal: #3a3f4b;
    /* New variables for redesign */
    --primary-gradient: linear-gradient(135deg, var(--dark-blue) 0%, var(--charcoal) 100%);
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Read More Button */
.read-more-btn {
    background: transparent;
    color: var(--gold);
    border: none;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.read-more-btn:hover {
    color: var(--dark-blue);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}



/* Hero Section */
.page-hero {
    padding-top: 50px;
    padding-bottom: 80px;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: var(--light-blue);
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--gold);
}

.hero-quote i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.hero-quote blockquote {
    color: var(--white);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-quote cite {
    color: var(--white);
    font-style: normal;
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    padding: 50px 0;
    background-color: var(--white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.profile-content h2 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    position: relative;
}

.profile-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.profile-content p {
    margin-bottom: 25px;
    color: var(--black);
}

.philosophy-card {
    background: rgba(191, 162, 90, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--gold);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.philosophy-content h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.philosophy-content blockquote {
    font-style: italic;
    color: var(--dark-blue);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.profile-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-hover);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}


.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--dark-blue);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(191, 162, 90, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.accolades {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.accolade {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.accolade:hover {
    background: var(--cream);
    transform: translateX(10px);
}

.accolade i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 30px;
}

.accolade span {
    font-weight: 600;
    color: var(--dark-blue);
}

/* Evolution Timeline - IMPROVED */
.evolution-section {
    padding: 50px 0;
    background-color: var(--cream);
}

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

.section-header h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--black);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}

/* Timeline line - centered on mobile */
.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(191, 162, 90, 0.3);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.timeline-content h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--black);
    margin-bottom: 15px;
}

/* Read More functionality for timeline */
.timeline-text {
    max-height: none;
    overflow: visible;
    transition: max-height 0.5s ease;
}

.timeline-text.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.timeline-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

.highlight-box {
    background: rgba(191, 162, 90, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 20px 0;
}

.highlight-box h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.raise-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.pillar {
    background: var(--gold-gradient);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(191, 162, 90, 0.2);
}

/* Beliefs Section */
.beliefs-section {
    padding: 50px 0;
    background-color: var(--white);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.belief-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--gold);
}

.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.belief-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.belief-icon {
    width: 70px;
    height: 70px;
    background: rgba(191, 162, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.8rem;
}

.belief-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.belief-card blockquote {
    font-style: italic;
    color: var(--dark-blue);
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
}

.belief-card p {
    color: var(--black);
}

/* Client Fit Section */
.client-fit-section {
    padding: 50px 0;
    background-color: var(--cream);
}

.fit-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.fit-column {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.fit-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.ideal-fit {
    border-top: 4px solid #4CAF50;
}

.not-fit {
    border-top: 4px solid #f44336;
}

.fit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.fit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ideal-fit .fit-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.not-fit .fit-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.fit-header h3 {
    margin: 0;
    color: var(--dark-blue);
}

.fit-list {
    list-style: none;
}

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.fit-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fit-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.ideal-fit li i {
    color: #4CAF50;
}

.not-fit li i {
    color: #f44336;
}

.fit-list li span {
    color: var(--black);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 50px 0;
    background-color: var(--white);
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: rgba(191, 162, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 2rem;
}

.experience-content h3 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.experience-content > p {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 15px;
}

.experience-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.experience-details span {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 50px 0;
    background-color: var(--cream);
}

.client-quote {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    border-left: 4px solid var(--gold);
}

.client-quote i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.client-quote blockquote {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-quote cite {
    color: var(--gray);
    font-style: normal;
    font-weight: 600;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(191, 162, 90, 0.3);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.step-content h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.step-content ul {
    list-style: none;
    margin-top: 20px;
}

.step-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark-blue);
    font-weight: 500;
}

.step-content ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* Why Page Section */
.why-page-section {
    padding: 50px 0;
    background-color: var(--white);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.why-content p {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.callout-box {
    background: var(--gold-gradient);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.callout-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2rem;
}

.callout-content h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.callout-content p {
    color: var(--dark-blue);
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: var(--primary-gradient);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

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


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (1200px and down) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

/* Medium Devices (992px and down) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: span 2;
    }
    
    section {
        padding: 80px 0;
    }
}

/* Tablets (768px and down) - IMPROVED FOR TIMELINE */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu a {
        color: var(--light-gray) !important;
        padding: 10px 20px 10px 40px !important;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--gold) !important;
        border-left: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-quote {
        padding: 30px 20px;
    }
    
    .hero-quote blockquote {
        font-size: 1.2rem;
    }
    
    /* Timeline Improvements */
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    /* Read More for Timeline Text */
    .timeline-text.collapsed {
        max-height: 100px;
    }
    
    /* Show Read More button only on mobile for long text */
    .timeline-read-more {
        display: block;
        margin-top: 15px;
    }
    
    /* Hide Read More on desktop */
    .timeline-read-more.desktop-only {
        display: none;
    }
    
    /* Other Sections */
    .fit-comparison {
        grid-template-columns: 1fr;
    }
    
    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .callout-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Devices (576px and down) - FURTHER IMPROVEMENTS */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Timeline Mobile Optimization */
    .timeline {
        padding-left: 15px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 20px 15px;
    }
    
    .timeline-text.collapsed {
        max-height: 90px;
    }
    
    /* Profile Section */
    .profile-content h2::after {
        width: 40px;
    }
    
    .philosophy-card {
        padding: 20px;
    }
    
    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    /* Beliefs and Experience Cards */
    .beliefs-grid,
    .experience-highlights {
        grid-template-columns: 1fr;
    }
    
    .belief-card,
    .experience-card {
        padding: 20px;
    }
    
    /* Fit Comparison */
    .fit-column {
        padding: 25px;
    }
    
    .process-steps {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}

/* Small Mobile Devices (400px and down) */
@media (max-width: 400px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-quote blockquote {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Timeline for very small screens */
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-year {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 15px 12px;
    }
    
    .experience-card {
        padding: 15px;
    }
    
    .experience-content h3 {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .cta-section,
    .social-links,
    .btn,
    .read-more-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4 {
        color: black !important;
    }
    
    .highlight {
        color: black !important;
        -webkit-text-fill-color: black;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .profile-grid,
    .beliefs-grid,
    .fit-comparison,
    .experience-highlights {
        display: block !important;
    }
    
    .profile-image,
    .accolades,
    .experience-badge {
        display: none !important;
    }
    
    /* Show all text in print */
    .timeline-text.collapsed {
        max-height: none !important;
        overflow: visible !important;
    }
    
    .timeline-text.collapsed::after {
        display: none !important;
    }
}