/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Detail Page */
.services-detail {
    padding: 5rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
}

.service-number {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.2;
}

.service-content h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-features li {
    padding: 0.8rem 1.2rem;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-weight: 500;
    color: #333;
}

/* Solutions Page */
.solutions-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
}

.solution-card ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.solution-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Case Studies */
.case-studies {
    padding: 5rem 0;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.case-card:hover {
    transform: scale(1.05);
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.case-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-stats span {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Page */
.about-content {
    padding: 5rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mv-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 15px;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.value-item h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.8;
}

.industries-section {
    margin-bottom: 4rem;
}

.industries-section h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.industries-section > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

.company-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.company-info h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.business-hours {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.business-hours h3 {
    margin-bottom: 1rem;
}

.business-hours p {
    line-height: 1.8;
    opacity: 0.95;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.contact-form h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0 5rem;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: #2a5298;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-text h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
}

.contact-box p {
    margin-bottom: 0.8rem;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
}
