:root {
    --primary-dark: #0d1117;
    --primary-navy: #161b22;
    --accent-teal: #88d4ff;
    --accent-blue: #58a6ff;
    --light-gray: #e7f3ff;
    --dark-gray: #21262d;
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    --gradient-accent: linear-gradient(135deg, #113f67 0%, #58a6ff 100%);
}

@font-face {
    font-family: "bakh";
    src: url("../fonts/KalamehWeb-Medium.woff");
}

body {
    font-family: "bakh";
    color: #c9d1d9;
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

* {
    font-family: "bakh";
}

/* نوار ناوبری لوکس */
.navbar {
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(240, 246, 252, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(13, 17, 23, 0.98);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light-gray);
    letter-spacing: -1px;
}

.navbar-brand span {
    color: var(--accent-teal);
    font-weight: 700;
}

.nav-link {
    color: rgba(201, 209, 217, 0.85);
    font-weight: 500;
    margin-left: 20px;
    position: relative;
    padding: 5px 0;
}

.nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-teal);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover:before,
.nav-link.active:before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: var(--light-gray);
}

.nav-link.active {
    color: var(--light-gray);
    font-weight: 600;
}

/* هیرو سکشن مدرن */
.hero-section {
    background: linear-gradient(rgba(13, 17, 23, 0.85), rgba(13, 17, 23, 0.9)),
        url("../images/photo20513115362.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-gray);
    padding: 180px 0 150px;
    position: relative;
    overflow: hidden;
    min-height: 95vh !important;
    position: relative;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--primary-navy), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.6;
    color: rgba(201, 209, 217, 0.9);
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(57, 211, 83, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 211, 83, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(240, 246, 252, 0.2);
    color: var(--light-gray);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-outline-light:hover {
    background: rgba(240, 246, 252, 0.1);
    border-color: rgba(240, 246, 252, 0.3);
    color: var(--light-gray);
    transform: translateY(-3px);
}

/* بخش‌های اصلی */
.section {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    color: var(--light-gray);
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.3rem;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #8b949e;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* بخش درباره ما */
.about-section {
    background-color: var(--primary-navy);
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 1px solid rgba(240, 246, 252, 0.1);
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content {
    padding-right: 40px;
}

.about-content h3 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.about-content p {
    color: #8b949e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.feature-text p {
    margin-bottom: 0;
    color: #8b949e;
    font-size: 0.95rem;
}

/* بخش خدمات */
.services-section {
    background-color: var(--primary-dark);
}

.service-card {
    background: var(--primary-navy);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(240, 246, 252, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-teal);
}

.service-img-container {
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-body {
    padding: 25px;
}

.service-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-text {
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-blue);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* بخش آمار و ارقام */
.stats-section {
    background: var(--gradient-dark);
    color: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(240, 246, 252, 0.1);
    border-bottom: 1px solid rgba(240, 246, 252, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-teal);
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* بخش باربری‌های موفق */
.projects-section {
    background-color: var(--primary-navy);
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: var(--primary-navy);
    border: 1px solid rgba(240, 246, 252, 0.1);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-teal);
}

.project-img-container {
    height: 220px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-body {
    padding: 25px;
}

.project-badge {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.project-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.project-text {
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8b949e;
    font-size: 0.9rem;
}

.project-meta i {
    color: var(--accent-teal);
    margin-left: 5px;
}

/* بخش مقالات */
.blog-section {
    background-color: var(--primary-dark);
}

.blog-card {
    background: var(--primary-navy);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(240, 246, 252, 0.1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-teal);
}

.blog-img-container {
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-body {
    padding: 25px;
}

.blog-date {
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-left: 5px;
}

.blog-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-text {
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--accent-blue);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* بخش تماس با ما */
.contact-section {
    background-color: var(--primary-navy);
}

.contact-info {
    background: rgba(13, 17, 23, 0.5);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(240, 246, 252, 0.1);
}

.contact-info h3 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.contact-icon {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.contact-text p {
    margin-bottom: 0;
    color: #8b949e;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(57, 211, 83, 0.1);
    color: var(--accent-teal);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--primary-navy);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
}

.form-control {
    height: 50px;
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: var(--light-gray);
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.25rem rgba(57, 211, 83, 0.1);
    background: rgba(13, 17, 23, 0.9);
    color: var(--light-gray);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* نقشه */
.map-section {
    height: 400px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* فوتر */
.footer {
    background-color: var(--primary-dark);
    color: rgba(201, 209, 217, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(240, 246, 252, 0.1);
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light-gray);
    letter-spacing: -1px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent-teal);
    font-weight: 700;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #8b949e;
}

.footer-links h3 {
    color: var(--light-gray);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #8b949e;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    height: 50px;
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 10px 15px;
    color: var(--light-gray);
}

.newsletter-btn {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: none;
    padding: 0 25px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #58a6ff 0%, #39d353 100%);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(240, 246, 252, 0.1);
    color: #8b949e;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(240, 246, 252, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: #8b949e;
}

/* انیمیشن‌ها */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* دکمه بازگشت به بالا */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 211, 83, 0.3);
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(57, 211, 83, 0.4);
}

/* 
***********************************
blog page
***********************************
*/
.blog-header {
    background: linear-gradient(rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.9)),
        url("../images/photo_2025-08-23_23-33-38.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: rgba(201, 209, 217, 0.8);
}

.meta-item i {
    margin-left: 5px;
    color: var(--accent-teal);
}

.blog-content {
    padding: 80px 0;
    background-color: var(--primary-navy);
}

.article-container {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-bottom: 40px;
}

.article-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-content h2 {
    font-weight: 700;
    color: var(--light-gray);
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

.article-content h3 {
    font-weight: 700;
    color: var(--light-gray);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.article-content p {
    color: #8b949e;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-right: 20px;
    color: #8b949e;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background-color: rgba(57, 211, 83, 0.1);
    border-right: 3px solid var(--accent-teal);
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.highlight-box p {
    color: var(--light-gray);
    margin-bottom: 0;
    font-style: italic;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tag {
    background-color: rgba(57, 211, 83, 0.1);
    color: var(--accent-teal);
    padding: 5px 15px;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.author-box {
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-top: 50px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: 20px;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 5px;
}

.author-info p {
    color: #8b949e;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(240, 246, 252, 0.1);
    color: #8b949e;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
}

.related-articles {
    margin-top: 80px;
}

.related-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.related-card {
    background-color: var(--primary-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-bottom: 30px;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-body {
    padding: 20px;
}

.related-date {
    color: var(--accent-teal);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.related-date i {
    margin-left: 5px;
}

.related-body h4 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-body p {
    color: #8b949e;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-blue);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 
***********************************
project page
***********************************
*/

.transport-header {
    background: linear-gradient(rgba(13, 17, 23, 0.85), rgba(22, 27, 34, 0.9)),
        url("../images/photo_2025-08-23_23-33-50.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* افکت پارالکس */
    padding: 100px 0 80px;
    min-height: 85vh !important;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.transport-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--primary-navy), transparent);
    z-index: 1;
}

.transport-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.transport-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.transport-badge {
    background: linear-gradient(135deg, #39d353 0%, #58a6ff 100%);
    color: var(--primary-dark);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.transport-content {
    padding: 80px 0;
    background-color: var(--primary-navy);
}

.transport-details {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(240, 246, 252, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #39d353 0%, #58a6ff 100%);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.detail-text h4 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 5px;
}

.detail-text p {
    margin-bottom: 0;
    color: #8b949e;
}

.transport-description {
    margin-bottom: 40px;
}

.transport-description h3 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.transport-description p {
    color: #8b949e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.transport-gallery {
    margin-top: 50px;
}

.gallery-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 246, 252, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.transport-testimonial {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-top: 50px;
}

.testimonial-content {
    font-style: italic;
    color: #8b949e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 15px;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 5px;
}

.author-info p {
    color: #8b949e;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.transport-cta {
    background: linear-gradient(135deg, #39d353 0%, #58a6ff 100%);
    color: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    border-radius: 10px;
}

.cta-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-dark {
    background-color: var(--primary-dark);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #000;
    color: white;
    transform: translateY(-3px);
}

/* 
***********************************
archive page
***********************************
*/

.archive-header {
    background: linear-gradient(rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.9)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.archive-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.archive-content {
    padding: 80px 0;
    background-color: var(--primary-navy);
}

.filter-section {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-bottom: 40px;
}

.filter-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
}

.filter-tag {
    background-color: rgba(57, 211, 83, 0.1);
    color: var(--accent-teal);
    padding: 5px 15px;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    background-color: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--light-gray);
    padding-left: 45px;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b949e;
}

.article-card {
    background-color: var(--primary-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 246, 252, 0.1);
    margin-bottom: 30px;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-teal);
}

.article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-body {
    padding: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #8b949e;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.article-meta i {
    margin-left: 5px;
    color: var(--accent-teal);
}

.article-title {
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #8b949e;
    margin-bottom: 20px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.article-tag {
    background-color: rgba(57, 211, 83, 0.1);
    color: var(--accent-teal);
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.read-more {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-blue);
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    background-color: var(--primary-dark);
    border: 1px solid rgba(240, 246, 252, 0.1);
    color: #8b949e;
    border-radius: 5px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: rgba(57, 211, 83, 0.1);
    color: var(--accent-teal);
}

.page-item.active .page-link {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    border-color: var(--accent-teal);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    padding: 3px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}