/* Pages Specific Styles */

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

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

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Section */
.content-section {
    padding: 6rem 0;
}

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

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-image {
    position: relative;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--gradient);
    color: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

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

.problem-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Company Info */
.company-info {
    max-width: 900px;
    margin: 0 auto;
}

.company-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-item {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.info-item a {
    color: var(--primary);
    text-decoration: underline;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto;
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--primary);
}

.team-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-bio {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.team-bio p {
    margin: 0;
    line-height: 1.6;
}

.team-expertise,
.team-responsibilities {
    text-align: left;
    margin-bottom: 2rem;
}

.team-expertise h4,
.team-responsibilities h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-expertise ul,
.team-responsibilities ul {
    list-style: none;
    padding: 0;
}

.team-expertise li,
.team-responsibilities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.team-expertise li:before,
.team-responsibilities li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Engineering Team - Mini Cards */
.team-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-mini-card {
    background: var(--white);
    padding: 1.75rem 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.06);
}

.team-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 0, 0, 0.2);
}

.team-mini-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 18px rgba(139, 0, 0, 0.25);
}

.team-mini-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.team-mini-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Join Us */
.join-us {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-us h2 {
    margin-bottom: 1.5rem;
}

.join-us p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary);
    background: var(--light-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
}

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

.contact-method {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-method h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    color: var(--gray);
}

.contact-method a {
    color: var(--primary);
    text-decoration: underline;
}

.response-time {
    padding: 1.5rem;
    background: linear-gradient(135deg, #8B000010 0%, #1a000010 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.response-time p {
    margin: 0;
    color: var(--dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hidden {
    display: none;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Legal Content (Privacy & Terms) */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-content h2 {
    color: var(--primary);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

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

.legal-content h3 {
    color: var(--dark);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--gray);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--dark);
}


/* Company Logo */
.company-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}


/* Company Logo */
.company-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}


/* Pricing Section */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
    position: relative;
    border: 2px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin: 1rem 0 1.5rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 0.25rem;
}

.pricing-note {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    display: inline-block;
    width: auto;
    padding: 1rem 2.5rem;
}
