/* Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.main-content {
    max-width: 100%;
}

.main-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-list {
    margin: 20px 0;
    padding-left: 30px;
}

.content-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.strategy-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.strategy-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.strategy-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.strategy-card p {
    margin: 0;
    font-size: 14px;
}

/* Call to Action Box */
.call-to-action {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--primary-color);
}

.call-to-action h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.call-to-action p strong {
    font-size: 24px;
    color: var(--primary-color);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.fact-list,
.link-list {
    list-style: none;
    padding: 0;
}

.fact-list li,
.link-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.fact-list li:last-child,
.link-list li:last-child {
    border-bottom: none;
}

.link-list a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.link-list a:hover {
    color: var(--primary-color);
}

.sidebar-widget.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.sidebar-widget.highlight h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-widget.highlight p {
    color: var(--white);
}

.btn-small {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-small:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-status.ongoing {
    background-color: #4caf50;
    color: var(--white);
}

.project-status.completed {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Events Timeline */
.events-timeline {
    position: relative;
    padding: 20px 0;
}

.event-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.event-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-item h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.event-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Pages */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .main-content h2 {
        font-size: 28px;
    }

    .main-content h3 {
        font-size: 20px;
    }
}
