/* ============================================================================
   ABOUT US SECTION - Enhanced Two-Column Layout with Creative Visual Elements
   ============================================================================ */

.about-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

/* Section Header - Same as other sections */
.about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}


.about-section .section-header .title {
    font-size: 36px;
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

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

/* Left Section - Enhanced Company Story */
.about-left {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

/* Visual Header with Logo */
.about-visual-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
    position: relative;
}

.about-logo::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

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

.about-logo:hover::before {
    opacity: 0.4;
    transform: scale(1.1);
}

.about-logo svg {
    width: 35px;
    height: 35px;
}

.about-decorative-dots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-decorative-dots span {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.about-decorative-dots span:nth-child(2) {
    opacity: 0.8;
}

.about-decorative-dots span:nth-child(3) {
    opacity: 0.4;
}

.about-section-title {
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin: 0;
    flex: 1;
}

/* Story Cards */
.about-story-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.story-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(217, 198, 163, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 198, 163, 0.1), transparent);
    transition: left 0.6s ease;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 42, 68, 0.1);
    border-color: rgba(217, 198, 163, 0.4);
}

.story-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.story-icon svg {
    width: 20px;
    height: 20px;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
}

.story-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin: 0;
    flex: 1;
}

/* Benefits Section */
.about-benefits {
    margin: 25px 0;
}

.benefits-title {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-highlight) 100%);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(217, 198, 163, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 198, 163, 0.08), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 42, 68, 0.08);
    border-color: rgba(217, 198, 163, 0.3);
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.benefit-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-gray-600);
    margin: 0;
}

/* Highlight Card */
.about-highlight-card {
    background: linear-gradient(135deg, rgba(217, 198, 163, 0.1) 0%, rgba(45, 127, 116, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.highlight-decoration {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    color: var(--color-accent);
    opacity: 0.8;
}

.highlight-decoration svg {
    width: 100%;
    height: 100%;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    margin: 0;
    font-style: italic;
}

/* Right Section - Values */
.about-right {
    padding-left: 30px;
    border-left: 1px solid rgba(217, 198, 163, 0.3);
    display: flex;
    flex-direction: column;
}

.values-title {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-highlight) 100%);
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(217, 198, 163, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 42, 68, 0.1);
    border-color: rgba(217, 198, 163, 0.4);
}

.value-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
}

.value-item:hover .value-number {
    transform: scale(1.1);
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-text {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-gray-600);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section .section-header .title {
        font-size: 32px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-left {
        padding-right: 20px;
    }
    
    .about-right {
        padding-left: 20px;
    }
    
    .about-visual-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .about-logo {
        width: 55px;
        height: 55px;
    }
    
    .about-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .about-section-title {
        font-size: 22px;
    }
    
    .values-title {
        font-size: 22px;
    }
    
    .story-card {
        padding: 18px;
    }
    
    .about-highlight-card {
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-decoration {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-section .section-header {
        margin-bottom: 40px;
    }

    
    .about-section .section-header .title {
        font-size: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(217, 198, 163, 0.3);
        padding-top: 40px;
    }
    
    .about-visual-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .about-logo-container {
        align-self: center;
    }
    
    .about-section-title {
        font-size: 20px;
        text-align: center;
    }
    
    .about-story-cards {
        gap: 18px;
        margin-bottom: 20px;
    }
    
    .story-card {
        padding: 16px;
        gap: 12px;
    }
    
    .story-icon {
        width: 35px;
        height: 35px;
    }
    
    .story-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .story-text {
        font-size: 18px;
    }
    
    .about-benefits {
        margin: 20px 0;
    }
    
    .benefits-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-item {
        padding: 12px;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
    }
    
    .benefit-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .benefit-title {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .about-highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-decoration {
        width: 40px;
        height: 40px;
    }
    
    .highlight-text {
        font-size: 15px;
    }
    
    .values-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .values-list {
        gap: 16px;
    }
    
    .value-item {
        padding: 16px;
        gap: 12px;
    }
    
    .value-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .value-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .value-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
    }
    
    .about-section .section-header {
        margin-bottom: 30px;
    }
    
    .about-section .section-header .title {
        font-size: 24px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-visual-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .about-logo {
        width: 50px;
        height: 50px;
    }
    
    .about-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .about-section-title {
        font-size: 18px;
    }
    
    .about-story-cards {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .story-card {
        padding: 15px;
        gap: 10px;
    }
    
    .story-icon {
        width: 32px;
        height: 32px;
    }
    
    .story-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .story-text {
        font-size: 15px;
    }
    
    .about-highlight-card {
        padding: 18px;
        gap: 12px;
    }
    
    .highlight-decoration {
        width: 35px;
        height: 35px;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .values-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .values-list {
        gap: 15px;
    }
    
    .value-item {
        padding: 15px;
        gap: 10px;
    }
    
    .value-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .value-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .value-text {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .about-section {
        background: white;
        padding: 1rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .story-card,
    .value-item,
    .about-highlight-card {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
        page-break-inside: avoid;
        margin-bottom: 0.5rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .story-card,
    .value-item,
    .about-highlight-card {
        background: white;
        border: 2px solid var(--color-primary);
    }
    
    .about-logo,
    .story-icon,
    .value-number {
        background: var(--color-primary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .story-card,
    .value-item,
    .about-logo,
    .story-icon,
    .value-number {
        transition: none;
    }
    
    .story-card:hover,
    .value-item:hover {
        transform: none;
    }
    
    .about-logo:hover,
    .story-card:hover .story-icon,
    .value-item:hover .value-number {
        transform: none;
    }
    
    .story-card::before {
        display: none;
    }
}