/* Company Profile Page Styles */

/* Import base styles from about.css */
@import url('about.css');

/* Breadcrumb Styles */
.teguh-breadcrumb {
    background: var(--background-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.teguh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.teguh-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .teguh-footer-content {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

@media (max-width: 768px) {
    .teguh-footer-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
}

.teguh-breadcrumb a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.teguh-breadcrumb a:hover {
    color: var(--accent-color);
}

.teguh-breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.teguh-breadcrumb-current {
    color: var(--accent-color);
    font-weight: 600;
}

/* Hero Section */
.teguh-hero-small {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--background-secondary);
    overflow: hidden;
    color: var(--text-primary);
}

.teguh-hero-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.teguh-hero-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.teguh-hero-small .teguh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.teguh-hero-small .teguh-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease;
}

.teguh-hero-small .teguh-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Company Profile Content */
.teguh-company-profile {
    padding: 4rem 0;
}

.teguh-section {
    padding: 4rem 0;
    position: relative;
}

.teguh-profile-header {
    text-align: center;
    margin-bottom: 4rem;
}

.teguh-profile-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.teguh-profile-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Profile Grid */
.teguh-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.teguh-profile-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.teguh-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.teguh-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.teguh-profile-card:hover::before {
    opacity: 0.05;
}

.teguh-profile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.teguh-profile-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-profile-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Profile Details */
.teguh-profile-details {
    margin-bottom: 4rem;
}

.teguh-profile-section {
    margin-bottom: 3rem;
}

.teguh-profile-section h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Advantage List */
.teguh-advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teguh-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teguh-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.teguh-advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.teguh-advantage-item:hover::before {
    opacity: 0.03;
}

.teguh-advantage-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.teguh-advantage-content h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.teguh-advantage-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quality Standards */
.teguh-quality-standards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.teguh-standard-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teguh-standard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.teguh-standard-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.teguh-standard-item:hover::before {
    opacity: 0.03;
}

.teguh-standard-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-standard-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.teguh-profile-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
}

.teguh-profile-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.teguh-profile-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.teguh-contact-info {
    margin-bottom: 2rem;
}

.teguh-contact-item {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.teguh-profile-cta .teguh-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teguh-profile-cta .teguh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.teguh-profile-cta .teguh-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.teguh-profile-cta .teguh-btn:hover::before {
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .teguh-nav-center,
    .teguh-nav-right {
        display: none;
    }
    
    .teguh-nav-toggle {
        display: block;
    }
    
    .teguh-hero-small {
        min-height: 40vh;
    }
    
    .teguh-hero-small .teguh-hero-title {
        font-size: 2.5rem;
    }
    
    .teguh-hero-small .teguh-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .teguh-profile-header h2 {
        font-size: 2rem;
    }
    
    .teguh-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-advantage-list {
        grid-template-columns: 1fr;
    }
    
    .teguh-quality-standards {
        grid-template-columns: 1fr;
    }
    
    .teguh-profile-cta {
        padding: 2rem 1rem;
    }
    
    .teguh-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .teguh-hero-small {
        min-height: 35vh;
    }
    
    .teguh-hero-small .teguh-hero-title {
        font-size: 2rem;
    }
    
    .teguh-hero-small .teguh-hero-subtitle {
        font-size: 1rem;
    }
    
    .teguh-profile-header h2 {
        font-size: 1.5rem;
    }
    
    .teguh-profile-card,
    .teguh-advantage-item,
    .teguh-standard-item {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 