/* style/about.css */

/* Base styles for the about page */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px; /* Add some padding for sections */
}

.page-about__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #f0f0f0;
}

.page-about__card {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for cards */
    border: 1px solid rgba(255, 215, 0, 0.3); /* Gold border */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 80px 0;
    overflow: hidden;
    background-color: #000080; /* Midnight blue background */
    padding-top: var(--header-offset, 120px); /* Use header offset, adjust if shared already provides for body */
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly dim the background image */
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: #ffffff;
    padding: 20px;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__hero-button:hover {
    background-color: #e6c200;
    color: #000050;
}

/* Introduction Section */
.page-about__introduction-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* Dark background */
}

.page-about__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.page-about__text-block {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05); /* Subtle gold background */
    border-left: 5px solid #FFD700;
    border-radius: 5px;
}

.page-about__text-block p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-about__core-values {
    text-align: center;
    margin-top: 60px;
}

.page-about__value-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-about__value-item {
    background: rgba(0, 0, 128, 0.3); /* Semi-transparent midnight blue */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__value-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold shadow for icons */
}

.page-about__value-heading {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about__value-item p {
    color: #e0e0e0;
}

/* Commitment Section */
.page-about__commitment-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.page-about__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__commitment-item {
    text-align: center;
}

.page-about__commitment-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-about__commitment-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__commitment-item p {
    color: #e0e0e0;
}

/* Products Section */
.page-about__products-section {
    padding: 80px 0;
    background-color: #000080; /* Midnight blue background */
}

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

.page-about__product-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* Darker background for product cards */
    padding: 25px;
    border-radius: 10px;
}

.page-about__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-about__product-title {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.page-about__product-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__product-title a:hover {
    color: #ffffff;
}

.page-about__product-card p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Buttons */
.page-about__btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.page-about__btn-primary:hover {
    background-color: #e6c200;
    color: #000050;
}

.page-about__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 15px;
}

.page-about__btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

.page-about__cta-buttons {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Social Responsibility Section */
.page-about__social-responsibility-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.page-about__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 80px 0;
    background-color: #000080;
}

.page-about__why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__why-choose-us-item {
    text-align: center;
}

.page-about__why-choose-us-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Video Section */
.page-about__video-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.page-about__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Max width for the video player */
    margin: 40px auto 0;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-about__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-about__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.page-about__video-overlay:hover {
    opacity: 1;
}

.page-about__video-overlay-button {
    background-color: #FFD700;
    color: #000080;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__video-overlay-button:hover {
    background-color: #e6c200;
    color: #000050;
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
    background-color: #000080;
}

.page-about__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-about__faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #e0e0e0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 30px;
}

/* Contact Section */
.page-about__contact-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.page-about__contact-item {
    text-align: center;
}