/* Import the main home.css for shared styles */
@import url('./home.css');

/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11rem 0 4rem;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 24px;
    z-index: -1;
}

.story-content {
    padding: 2rem 0;
}

.story-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all var(--transition-normal);
}

.feature-box:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    transform: translateX(8px);
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.feature-box span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Delivery Section */
.delivery-section {
    padding: 6rem 0;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.delivery-map {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.delivery-map img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.department-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.department-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-normal);
}

.department-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.dept-number {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dept-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.delivery-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-glow);
}

.delivery-highlight i {
    font-size: 2rem;
}

.delivery-highlight p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.reason-card:hover::before {
    opacity: 0.05;
}

.reason-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.reason-card:hover .reason-icon {
    background: var(--accent-gradient);
    transform: scale(1.1) rotate(5deg);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
    transition: all var(--transition-normal);
}

.reason-card:hover .reason-icon i {
    color: white;
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reason-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.05;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .story-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .image-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 9rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .story-section,
    .delivery-section,
    .why-choose-section,
    .cta-section {
        padding: 4rem 0;
    }

    .image-wrapper img {
        height: 400px;
    }

    .story-text {
        font-size: 1rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .department-item {
        padding: 1rem;
    }

    .dept-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dept-name {
        font-size: 1rem;
    }

    .reason-card {
        padding: 2rem;
    }

    .reason-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .delivery-highlight {
        flex-direction: column;
        text-align: center;
    }

    .delivery-highlight i {
        font-size: 1.5rem;
    }

    .delivery-highlight p {
        font-size: 1rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-image {
    animation: slideInLeft 0.8s ease forwards;
}

.story-content {
    animation: slideInRight 0.8s ease forwards;
}

.reason-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.reason-card:nth-child(1) {
    animation-delay: 0.1s;
}

.reason-card:nth-child(2) {
    animation-delay: 0.2s;
}

.reason-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BLOG CONTENT STYLES ==================== */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 2rem 0 1rem;
}

.blog-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.blog-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.blog-content ul li {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.blog-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.blog-content strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.blog-content a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--accent-secondary);
}
