/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: linear-gradient(135deg, #4338ca 0%, #0284c7 100%);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08), transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
}

.page-breadcrumb a {
    color: #fff;
    transition: 0.3s;
}

.page-breadcrumb a:hover {
    opacity: 0.7;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 80px 0;
    background: var(--bg-body);
}

.content-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.content-box h2 {
    font-size: 28px;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.content-box h3 {
    font-size: 20px;
    color: var(--text-main);
    margin: 25px 0 12px;
}

.content-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.content-box ul, .content-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.content-box ul li, .content-box ol li {
    margin-bottom: 8px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    background: linear-gradient(135deg, #4338ca, #0284c7);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image i {
    font-size: 120px;
    opacity: 0.9;
    animation: float1 4s ease-in-out infinite;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: orbitSpin 20s linear infinite;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-box .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4338ca, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin: 0 auto 15px;
}

.stat-box h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338ca, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: var(--shadow-md);
}

.team-card h4 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, #4338ca, #0284c7);
    color: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-form-large {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-form-large h3 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ===== FAQ ===== */
.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    font-size: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.faq-question i {
    transition: 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: var(--bg-soft);
    color: var(--primary);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ===== TRACK ORDER ===== */
.track-form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.track-form-box i.big-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.tracking-input {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.tracking-input input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
}

.tracking-input input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67,56,202,0.15);
}

.order-status-box {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    text-align: left;
}

.order-status-box.active {
    display: block;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-medium);
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.timeline-step .dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-medium);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: 0.3s;
}

.timeline-step.done .dot {
    background: var(--success);
}

.timeline-step.active .dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(67,56,202,0.2);
    animation: pulse 2s infinite;
}

.timeline-step p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}

.timeline-step.done p, .timeline-step.active p {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 32px; }
    .about-grid, .contact-grid, .form-row-2 { grid-template-columns: 1fr; gap: 20px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .content-box { padding: 25px; }
    .status-timeline { flex-wrap: wrap; gap: 20px; }
}