/* Performance Optimized CSS - Extracted from inline styles */

/* ==========================================================================
   Hero Section Patterns
   ========================================================================== */

.hero-gradient {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5e72e4 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* ==========================================================================
   Button Components
   ========================================================================== */

.cta-button-primary {
    background: linear-gradient(45deg, #ff6b35, #f39800);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
    display: inline-block;
    cursor: pointer;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.6);
    color: white;
    text-decoration: none;
}

.cta-button-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

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

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

/* ==========================================================================
   Typography System
   ========================================================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a237e;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: white;
}

.primary-text {
    color: #1a237e;
}

.secondary-text {
    color: #666;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.text-left {
    text-align: left;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* ==========================================================================
   Background Patterns
   ========================================================================== */

.overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.section-background-light {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-background-dark {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

/* ==========================================================================
   Interactive Elements
   ========================================================================== */

.hover-lift {
    transition: transform 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   MVV (Mission, Vision, Values) Specific Styles
   ========================================================================== */

.mvv-section {
    padding: 6rem 0;
    position: relative;
}

.mvv-mission {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mvv-vision {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.mvv-values {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.mvv-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mvv-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.mvv-description {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.mvv-story-text {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
    line-height: 2;
}

.mvv-story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

.mvv-story-text p:last-child {
    margin-bottom: 0;
}

.mvv-story-emphasis {
    font-weight: 600;
}

.mvv-description-large {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.value-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.page-header-about {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5e72e4 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header-about h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header-about p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-about {
    background: rgba(248,249,250,0.8);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.company-profile-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.profile-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table tr {
    border-bottom: 1px solid #eee;
}

.profile-table th {
    padding: 1.2rem 0;
    text-align: left;
    color: #1a237e;
    font-weight: 600;
    width: 35%;
}

.profile-table td {
    padding: 1.2rem 0;
    color: #666;
}

.business-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.business-list li {
    padding: 1rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.business-list li:hover {
    background: #f8f9fa;
    padding-left: 2.5rem;
}

.business-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #1a237e;
    font-weight: bold;
    font-size: 0.8rem;
}

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

.industry-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

/* Responsive Design for MVV */
@media (max-width: 768px) {
    .mvv-title {
        font-size: 2.2rem;
    }
    
    .mvv-description {
        font-size: 1.2rem;
    }
    
    .mvv-description-large {
        font-size: 1.3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header-about h1 {
        font-size: 2.2rem;
    }
    
    .page-header-about p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mvv-section {
        padding: 4rem 0;
    }
    
    .mvv-title {
        font-size: 1.8rem;
    }
    
    .mvv-description {
        font-size: 1.1rem;
    }
    
    .value-title {
        font-size: 1.6rem;
    }
    
    .profile-card {
        padding: 2rem;
    }
}