/* ===== Page Hero ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ===== About Page ===== */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-placeholder {
    background: var(--light);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 120px;
    opacity: 0.5;
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.mv-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 42px;
    height: 42px;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    flex: 1;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray);
}

/* Team */
.team {
    padding: 100px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    font-size: 64px;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== Services Page ===== */
.services-detail {
    padding: 100px 0;
    background: var(--white);
}

.services-detail-grid {
    display: grid;
    gap: 60px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    direction: rtl;
}

.service-detail-item:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-feature-tag {
    padding: 8px 16px;
    background: var(--light);
    border-radius: 50px;
    font-size: 14px;
    color: var(--dark);
}

.service-visual {
    background: var(--light);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-icon {
    font-size: 100px;
    opacity: 0.6;
}

/* Process */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 40px;
    font-size: 24px;
    color: var(--primary);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== Solutions Page ===== */
.solutions-grid-section {
    padding: 100px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.solution-image {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image-icon {
    font-size: 80px;
    color: var(--white);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.solution-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-link {
    color: var(--primary);
    font-weight: 600;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--light);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.case-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.case-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    gap: 30px;
}

.case-stat {
    text-align: center;
}

.case-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.case-stat-label {
    font-size: 13px;
    color: var(--gray);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-text p {
    font-size: 14px;
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map */
.map-section {
    padding: 100px 0;
    background: var(--light);
}

.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
}

.map-placeholder-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 100px 0;
    background: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--dark);
}

.legal-container p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-container a {
    color: var(--primary);
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
    font-size: 14px;
    color: var(--gray);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .mv-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .about-grid,
    .service-detail-item,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item:nth-child(even) {
        direction: ltr;
    }
    
    .mv-grid,
    .process-grid,
    .team-grid,
    .solutions-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder,
    .service-visual {
        height: 250px;
    }
}