/* Additional styles for enhanced functionality */

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

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Styles */
.company-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Mission Vision Styles */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--anthracite);
}

.mv-item h3 {
    font-size: 1.8rem;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--white);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-yellow);
}

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

.value-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--anthracite);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cert-badge {
    background: var(--anthracite);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-badge i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.cert-item h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--white);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-stat i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.team-stat h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-stat p {
    color: var(--text-light);
}

/* Quote Form Styles */
.quote-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.quote-info h2 {
    font-size: 2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quote-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quote-benefits h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.benefit-list i {
    color: var(--primary-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}

.contact-item strong {
    font-weight: 600;
    display: block;
    color: var(--anthracite);
}

.quote-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.quote-form .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.quote-form .form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--anthracite);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--anthracite);
    font-weight: 600;
    font-size: 12px;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Product Reference */
.product-reference {
    padding: 80px 0;
    background: var(--white);
}

.product-reference h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reference-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
}

.reference-item h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-item ul {
    list-style: none;
}

.reference-item ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.reference-item ul li::before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Contact Styles */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel h2 {
    font-size: 2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-panel > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--anthracite);
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.social-links h3 {
    font-size: 1.2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--anthracite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-yellow);
    color: var(--anthracite);
    transform: translateY(-2px);
}

.contact-form-panel {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-panel h2 {
    font-size: 2rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-panel > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    background: var(--white);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}

/* Support Section */
.contact-support {
    padding: 80px 0;
    background: var(--white);
}

.contact-support h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 3rem;
    font-weight: 700;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.support-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: var(--anthracite);
}

.support-item h3 {
    font-size: 1.3rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-item > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.support-contact p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.support-contact i {
    color: var(--primary-yellow);
    margin-right: 0.5rem;
    width: 15px;
}

/* Emergency Support */
.emergency-support {
    padding: 60px 0;
    background: var(--anthracite);
    color: var(--white);
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.emergency-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-info p {
    opacity: 0.9;
}

.emergency-btn {
    background: var(--primary-yellow);
    color: var(--anthracite);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.emergency-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 300px;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: var(--transition);
}

.notification.show {
    transform: translateX(0);
}

.notification.hide {
    transform: translateX(100%);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-content,
    .mv-grid,
    .contact-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .mv-item,
    .contact-detail {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-detail {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }
}