
:root {
    --primary-green: #16a34a;
    --dark-green: #15803d;
    --light-green: #22c55e;
    --dark: #1a1a1a;
    --light: #ffffff;
    --bs-link-color: #16a34a;
    --bs-pagination-active-bg: #16a34a;
}
.active>.page-link, .page-link.active {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
}

img, input {
    max-width: 100%;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

.navbar {
    background: var(--light) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-green) !important;
}

.navbar-brand img {
    height: 53px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green) !important;
}

.btn-primary {
    background: var(--primary-green);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    border: none;
    border-radius: 15px;
    padding: 0;
    transition: all 0.3s;
    height: 100%;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.service-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-container {
    overflow: hidden;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.service-content {
    padding: 1.5rem;
}

.service-content a {
    color: var(--bs-heading-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stats-section {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.why-choose-section {
    background: linear-gradient(to bottom, var(--light) 0%, #f8f9fa 100%);
    padding-top: 80px;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--light);
    padding: 50px 0;
}

.contact-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    color: var(--dark);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--light);
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.tracking-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-success {
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-success:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-language {
    background: white;
    border: 1px solid #ddd;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-language:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-login-btn {
    border: 1px solid #dee2e6;
    padding: 0.6rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--dark);
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.social-login-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary-green);
    color: var(--dark);
}

.social-login-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Branch Styles */
.branch-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.branch-list::-webkit-scrollbar {
    width: 6px;
}

.branch-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.branch-list::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.branch-item {
    background: var(--light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.branch-item:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.2);
}

.branch-item.active {
    border-color: var(--primary-green);
    background: linear-gradient(to right, rgba(22, 163, 74, 0.1), var(--light));
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.branch-item.active .branch-icon {
    background: var(--dark-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.branch-info {
    flex: 1;
}

.branch-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.branch-address {
    color: #666;
    font-size: 0.9rem;
}

.branch-contact {
    color: #666;
    font-size: 0.85rem;
}

.map-container {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Region Tabs */
.region-filter-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.region-select-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.region-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.region-label i {
    color: var(--primary-green);
    font-size: 1.4rem;
}

.region-select {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 24px;
    padding-right: 4rem;
}

.region-select:hover {
    border-color: var(--dark-green);
}

.region-select:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}


.region-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-north {
    background: #dbeafe;
    color: #1e40af;
}

.badge-central {
    background: #fef3c7;
    color: #92400e;
}

.badge-south {
    background: #d1fae5;
    color: #065f46;
}

.branch-item[style*="display: none"] {
    display: none !important;
}

/* Tracking Section */
.tracking-section-box {
    position: relative;
}

.tracking-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
}

.tracking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.tracking-input-group {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.tracking-input-group .input-group-text {
    background: white;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.tracking-input-group .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    flex: 1;
}

.tracking-input-group .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-tracking {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-tracking:hover {
    background: var(--dark-green);
    transform: translateX(-2px);
}

.tracking-tips {
    text-align: center;
}

.quick-access {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
    border-color: var(--primary-green);
}

.quick-btn i {
    font-size: 1.8rem;
}

.quick-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .tracking-input-group {
        flex-wrap: wrap;
    }

    .btn-tracking {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 10px !important;
    }

    .tracking-form-container {
        padding: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--light);
    padding: 4rem 0;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.service-footer {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-detail {
    flex: 1;
    padding: 0.8rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-detail:hover {
    background: var(--dark-green);
    color: white;
}

.btn-quote {
    flex: 1;
    padding: 0.8rem;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-quote:hover {
    background: var(--primary-green);
    color: white;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.why-choose h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--dark);
}

.feature-box {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-box h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-box p {
    color: #666;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-large {
    background: white;
    color: var(--primary-green);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

 /* Article Content */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 15px;
}

.article-card {
    background: var(--light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.meta-item i {
    color: var(--primary-green);
}

 /* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.sidebar-widget h5 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post img {
    max-width: 135px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    
}

.related-post-content h6 a {
    color: var(--dark);
}

.related-post-content small {
    color: #666;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0fdf4;
    color: var(--primary-green);
    border-radius: 20px;
    margin: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.category-tag:hover {
    background: var(--primary-green);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.result-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}
/* Timeline */
.timeline-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--dark);
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    min-height: 122px;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    font-size: 1.5rem;
}

.timeline-dot.inactive {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
}

.timeline-content h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 0.3rem;
}

.timeline-dot.inactive + .timeline-content .timeline-date {
    color: #9ca3af;
}
/* Delivery Details */
.delivery-details {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: var(--dark);
}

.order-header {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.order-id {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}

.status-badge {
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-cancel   { background:#ffe5e5; color:#d93025; }
.status-success  { background:#e6f4ea; color:#188038; }
.status-info     { background:#e8f0fe; color:#1a73e8; }
.status-warning  { background:#fff4e5; color:#f29900; }
.status-shipping { background:#fff8e1; color:#f9ab00; }
.status-primary  { background:#e3f2fd; color:#1976d2; }
.status-pending  { background:#f1f3f4; color:#5f6368; }

/* Contact Info Cards */
.contact-info-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.contact-info-card h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-control, .contact-form-section .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.info-section {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.info-section-body {
    padding: 1.5rem;
}

.info-table {
    width: 100%;
}

.info-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1rem 0;
}

.info-table td:first-child {
    color: #666;
    font-weight: 500;
    width: 40%;
}

.info-table td:last-child {
    color: var(--dark);
    font-weight: 600;
}

.info-table td strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.info-section-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}