/* Pages Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #CC3366 0%, #CC3366 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Styles */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.section-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mv-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.why-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.2;
}

.why-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Products & Services Page */
.products-showcase-section {
    padding: 80px 0;
    background: var(--white);
}

.products-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-showcase-card.reverse {
    direction: rtl;
}

.product-showcase-card.reverse > * {
    direction: ltr;
}

.product-showcase-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-showcase-image img {
    width: 100%;
    height: auto;
}

.product-badge-large {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-showcase-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-showcase-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-title {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 20px 10px;
}

.industry-text {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001B44 0%, #003D82 100%);
    color: var(--white);
    position: relative;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Blog Listing Page */
.blog-listing-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-listing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-listing-card:hover {
    transform: translateY(-10px);
}

.blog-listing-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-listing-card:hover .blog-listing-image img {
    transform: scale(1.05);
}

.blog-listing-content {
    padding: 25px;
}

.blog-listing-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.blog-date {
    color: var(--text-light);
}

.blog-category-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 3px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.blog-listing-title a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.blog-listing-title a:hover {
    color: var(--primary-blue);
}

.blog-listing-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Awards Page */
.awards-section,
.certifications-section,
.accreditations-section {
    padding: 80px 0;
}

.awards-section {
    background: var(--white);
}

.certifications-section {
    background: #f8f9fa;
}

.accreditations-section {
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.award-year {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-organization {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.award-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.certification-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.certification-card:hover {
    transform: translateY(-10px);
}

.certification-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-logo img {
    max-width: 100%;
    max-height: 100%;
}

.certification-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.certification-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Accreditations */
.accreditations-list {
    max-width: 900px;
    margin: 0 auto 50px;
}

.accreditation-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.accreditation-icon {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: bold;
}

.accreditation-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.accreditation-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-box {
    background: var(--light-blue);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.commitment-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.faq-contact-box {
    background: var(--light-blue);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-contact-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-page-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.btn-large {
    padding: 15px 50px;
    font-size: 16px;
    margin-top: 10px;
}

.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content-grid,
    .tailor-made-content,
    .after-sales-content,
    .product-showcase-card {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .services-grid,
    .industries-grid,
    .blog-listing-grid,
    .awards-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mv-grid,
    .why-choose-grid,
    .values-grid,
    .team-grid,
    .services-grid,
    .industries-grid,
    .blog-listing-grid,
    .awards-grid,
    .certifications-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
}
