/* ============================================
   About Page - Modern Redesign
   ============================================ */

/* Page Banner */
.about-banner {
    position: relative;
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    padding: 100px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner-subtitle {
    font-size: 1.3em;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Wrapper */
.about-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-wrapper .container {
    max-width: 1400px !important;
    width: 100%;
}

.page-grid {
    display: grid !important;
    grid-template-columns: minmax(200px, 240px) 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    max-width: none !important;
}

.page-main {
    min-width: 0;
    width: 100%;
    max-width: none;
}

/* Content Blocks */
.content-block {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.highlight-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8f5e9;
}

.stats-block {
    background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 100%);
}

.block-header {
    margin-bottom: 30px;
}

.block-title {
    font-size: 2em;
    color: #1e8449;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #52c97a);
    border-radius: 2px;
}

.block-body {
    color: #555;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Card Grids */
.card-grid {
    display: grid;
    gap: 25px;
}

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

.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

/* Info Cards */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
}


.card-title {
    font-size: 1.4em;
    color: #1e8449;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: #666;
    line-height: 1.7;
}

/* Value Cards */
.value-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 3px solid #27ae60;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}


.value-title {
    font-size: 1.2em;
    color: #1e8449;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-desc {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Capability Cards */
.capability-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #27ae60;
}

.capability-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.15);
}

.capability-title {
    font-size: 1.3em;
    color: #1e8449;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.capability-list li:last-child {
    border-bottom: none;
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Stat Cards */
.stat-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 1.2em;
    color: #1e8449;
    margin-bottom: 12px;
    font-weight: 600;
}

.stat-desc {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Quality List */
.quality-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.quality-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.quality-list li:last-child {
    border-bottom: none;
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(30, 132, 73, 0.3);
}

.cta-content {
    color: #fff;
}

.cta-title {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1em;
    color: #ecf0f1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #1e8449;
}

/* Sidebar */
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-module {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.module-title {
    color: #1e8449;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.module-list li a:hover {
    color: #27ae60;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #555;
    line-height: 1.7;
}

.contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #27ae60;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-day {
    font-weight: 600;
    color: #333;
}

.hours-time {
    color: #666;
}

.cta-module {
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
    color: #fff;
    text-align: center;
    padding: 30px 20px !important;
}

.cta-module .module-title {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.cta-module p {
    color: #ecf0f1;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}

.cta-module .btn-block {
    width: 100%;
    display: block;
    text-align: center;
    background: #fff;
    color: #1e8449;
    border: none;
    padding: 14px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-module .btn-block:hover {
    background: #f8f9fa;
    color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 60px 0;
    }
    
    .banner-title {
        font-size: 2.5em;
    }
    
    .banner-subtitle {
        font-size: 1.1em;
    }
    
    .about-wrapper {
        padding: 40px 0;
    }
    
    .page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .two-cols,
    .three-cols {
        grid-template-columns: 1fr;
    }
    
    .cta-block {
        padding: 40px 25px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}
