/* ============================================
   IMC INTERNATIONAL - PAGES STYLESHEET
   Page-specific styles for About, Contact, etc.
   ============================================ */

/* === PAGE HERO === */
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-darker) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(62, 146, 204, 0.1) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

/* === MISSION SECTION === */
.mission-section {
    padding: 6rem 0;
    background: var(--background-darker);
}

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

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-primary);
    box-shadow: 0 0 60px rgba(62, 146, 204, 0.5);
    animation: float 6s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(62, 146, 204, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    animation-duration: 30s;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    animation-duration: 40s;
}

/* === PHILOSOPHY SECTION === */
.philosophy-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.philosophy-section .section-header h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.philosophy-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* === TECH STACK SECTION === */
.tech-stack-section {
    padding: 6rem 0;
    background: var(--background-darker);
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-medium);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.tech-icon.oracle {
    background: linear-gradient(135deg, #F80000 0%, #FF5733 100%);
}

.tech-icon.ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tech-icon.integration {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tech-icon.modular {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tech-icon.compliance {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tech-card > p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.tech-features {
    list-style: none;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tech-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* === EXPANSION SECTION === */
.expansion-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.expansion-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.expansion-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(62, 146, 204, 0.5);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(62, 146, 204, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.timeline-badge.coming-soon {
    background: rgba(0, 255, 209, 0.1);
    border-color: var(--accent-color);
}

.timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.timeline-stats {
    display: flex;
    gap: 2rem;
}

.timeline-stats .stat {
    display: flex;
    flex-direction: column;
}

.timeline-stats .stat strong {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.timeline-stats .stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.expansion-promise {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(62, 146, 204, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
}

.expansion-promise h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* === COMMITMENT SECTION === */
.commitment-section {
    padding: 6rem 0;
    background: var(--background-darker);
}

.commitment-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-content h2 {
    margin-bottom: 1rem;
}

.commitment-content .lead {
    margin-bottom: 3rem;
}

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

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

.commitment-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* === FORM STYLES === */
.form-section {
    padding: 6rem 0;
    background: var(--background-darker);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--accent-color);
}

.form-control {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    cursor: pointer;
}

.form-control.error {
    border-color: #ff5f56;
}

.error-message {
    color: #ff5f56;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* === NOTIFICATION === */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    max-width: 400px;
    background: var(--surface-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(500px);
    transition: transform var(--transition-medium);
    z-index: 9999;
}

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

.notification-success {
    border-left: 4px solid #27C93F;
}

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

.notification-info {
    border-left: 4px solid var(--secondary-color);
}

.notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-success i {
    color: #27C93F;
}

.notification-error i {
    color: #FF5F56;
}

.notification-info i {
    color: var(--secondary-color);
}

.notification span {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.notification-close:hover {
    color: var(--text-primary);
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s ease;
}

/* === MAP SECTION === */
.map-section {
    padding: 6rem 0;
    background: var(--background-dark);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === OFFICE CARDS === */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.office-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.office-detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.office-detail-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.office-detail-card h3 i {
    color: var(--accent-color);
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-item span,
.info-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-item a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--accent-color);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .expansion-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}