/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #1C2E4A 50%, #2a3f5f 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23C6A144" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #C6A144 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #C6A144;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Company Background */
.company-background {
    padding: 80px 0;
    background: white;
}

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

.content-text h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stats-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.1);
    border: 1px solid rgba(198, 161, 68, 0.1);
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(28, 46, 74, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C6A144;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: #1C2E4A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Corporate Culture */
.corporate-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.culture-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C6A144, #e6c866);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(28, 46, 74, 0.15);
    border-color: #C6A144;
}

.culture-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.culture-card h3 {
    color: #1C2E4A;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.4rem;
}

.culture-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Corporate Values */
.corporate-values {
    padding: 80px 0;
    background: white;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 68, 0.1);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.1);
    border-color: #C6A144;
}

.value-number {
    background: #C6A144;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(198, 161, 68, 0.3);
}

.value-content h3 {
    color: #1C2E4A;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
}

.value-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Global Presence */
.global-presence {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 68, 0.1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(28, 46, 74, 0.15);
    border-color: #C6A144;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.location-card h3 {
    color: #1C2E4A;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.3rem;
}

.location-title {
    color: #C6A144;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.location-card p:last-child {
    color: #666;
    font-size: 0.9rem;
}

/* Technology Page Styles */
.tech-overview {
    padding: 60px 0;
    background: white;
}

.tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-intro h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.tech-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-section {
    padding: 80px 0;
    background: white;
}

.tech-section.alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-content.reverse {
    direction: rtl;
}

.tech-content.reverse > * {
    direction: ltr;
}

.tech-text h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.tech-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1C2E4A;
    font-weight: 500;
    padding: 10px;
    background: rgba(198, 161, 68, 0.1);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.2rem;
    color: #C6A144;
}

/* Technology Visuals */
.tech-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(28, 46, 74, 0.1);
}

.diagram-node {
    background: #C6A144;
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 15px rgba(198, 161, 68, 0.3);
    transition: transform 0.3s ease;
}

.diagram-node:hover {
    transform: scale(1.05);
}

.diagram-arrow {
    font-size: 2.5rem;
    color: #1C2E4A;
    font-weight: bold;
}

/* Solutions Page Styles */
.solutions-overview {
    padding: 60px 0;
    background: white;
}

.solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-intro h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.solutions-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-section.alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-content.reverse {
    direction: rtl;
}

.solution-content.reverse > * {
    direction: ltr;
}

.solution-text h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.solution-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #1C2E4A 0%, #2a3f5f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(198, 161, 68, 0.3) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-text {
    color: #C6A144;
    position: relative;
    z-index: 2;
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
    background: white;
}

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

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid #C6A144;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(28, 46, 74, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 46, 74, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #C6A144;
}

.contact-card h3 {
    color: #1C2E4A;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    color: #1C2E4A;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(28, 46, 74, 0.1);
    border: 1px solid rgba(198, 161, 68, 0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1C2E4A;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C6A144;
    box-shadow: 0 0 0 3px rgba(198, 161, 68, 0.1);
}

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

/* Global Offices */
.global-offices {
    padding: 80px 0;
    background: white;
}

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

.office-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #C6A144;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(28, 46, 74, 0.1);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 46, 74, 0.15);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.office-icon {
    font-size: 2.5rem;
    color: #C6A144;
}

.office-info h3 {
    color: #1C2E4A;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.3rem;
}

.office-title {
    color: #C6A144;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.office-details p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.office-details p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-grid,
    .tech-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2,
    .tech-text h2,
    .solution-text h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .culture-grid,
    .locations-grid,
    .contact-grid,
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .value-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
} 