/* Product Pages Quick Menu Styles */
.quick-menu .submenu-section {
    margin-bottom: 20px;
}

.quick-menu .submenu-section .section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    display: block;
}

.quick-menu .submenu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-menu .submenu-section li {
    margin-bottom: 5px;
}

.quick-menu .submenu-section a {
    display: block;
    padding: 6px 12px;
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.quick-menu .submenu-section a:hover {
    background: #f5f5f5;
    color: #0066ff;
    padding-left: 16px;
}

.quick-menu .submenu-section a.active {
    background: #e6f2ff;
    color: #0066ff;
    font-weight: 600;
    padding-left: 16px;
}/* Sub Pages Common Styles */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: var(--white);
    overflow: hidden;
}

/* Page Hero with Image */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/about-hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.page-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/page-header-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--sky-blue);
}

.breadcrumb span {
    margin: 0 var(--spacing-sm);
}

.breadcrumb .current {
    color: var(--sky-blue);
}

/* Active menu indicator */
.nav-menu .active > a {
    color: var(--primary-blue);
}

.dropdown-section a.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

/* Greeting Page Styles */
.greeting-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.greeting-content {
    max-width: 1000px;
    margin: 0 auto;
}

.greeting-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.greeting-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

.greeting-title .highlight {
    color: var(--primary-blue);
}

.greeting-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.greeting-message {
    background: var(--off-white);
    border-radius: 20px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.ceo-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.ceo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
    flex-shrink: 0;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-title h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.message-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.message-content p {
    margin-bottom: var(--spacing-lg);
}

.message-intro {
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 500;
}

.message-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

.message-closing {
    font-style: italic;
    color: var(--gray-600);
    margin-top: var(--spacing-xl);
}

/* Company Values - Hexagon Style */
.company-values {
    margin-top: var(--spacing-xxl);
}

.company-values h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values-hexagon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

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

.hex-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    transition: all 0.3s ease;
}

.hex-icon.pink {
    background: rgba(255, 182, 193, 0.3);
}

.hex-icon.gray {
    background: rgba(176, 196, 222, 0.3);
}

.hex-icon.green {
    background: rgba(152, 251, 152, 0.3);
}

.hex-icon:hover {
    transform: scale(1.1);
}

.hex-icon svg {
    width: 50px;
    height: 50px;
    color: var(--gray-700);
}

.hex-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.hex-plus {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray-400);
    margin: 0 var(--spacing-sm);
}

/* Existing Values Grid Style - Remove or comment out */
.values-grid {
    display: none;
}

.value-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--off-white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--pale-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        height: 300px;
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .ceo-info {
        flex-direction: column;
        text-align: center;
    }
    
    .greeting-message {
        padding: var(--spacing-lg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}