.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 2px solid #d84315;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(216, 67, 21, 0.14);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 12px 12px 0 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffa726;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card-body {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: #a49464;
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    color: #b71c1c;
}

.blog-card:hover .blog-title {
    color: #d84315;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: #e65100;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.read-more-btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e65100;
    transition: width 0.3s ease;
}

.read-more-btn:hover::after {
    width: 100%;
}

/* Station Detail Specific Styles */
.station-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b71c1c;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.station-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d84315, #ffa726);
    border-radius: 2px;
}

.station-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.5s ease;
}

.station-main-image:hover {
    transform: scale(1.02);
}

.station-content-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(216, 67, 21, 0.1);
    line-height: 1.8;
    color: #444;
}

.station-content-card h2, .station-content-card h3 {
    color: #b71c1c;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.station-sidebar-card {
    background: linear-gradient(135deg, #b71c1c 0%, #d84315 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 25px rgba(183, 28, 28, 0.2);
}

.station-sidebar-card h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.cta-button {
    background: #fff;
    color: #b71c1c;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background: #ffa726;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.station-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.station-breadcrumb a {
    color: #d84315;
    text-decoration: none;
    transition: color 0.2s;
}

.station-breadcrumb a:hover {
    color: #b71c1c;
}

@media (max-width: 768px) {
    .station-detail-title {
        font-size: 2rem;
    }
    .station-main-image {
        height: 300px;
    }
    .station-content-card {
        padding: 1.5rem;
    }
}
/* Feedback Form Specific Styles */
.feedback-section {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.feedback-header {
    margin-bottom: 3rem;
}

.feedback-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
}

.feedback-form-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(216, 67, 21, 0.08);
}

.feedback-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feedback-form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background: #f9f9f9;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feedback-form-control:focus {
    background: #fff;
    border-color: #d84315;
    outline: none;
    box-shadow: 0 0 0 4px rgba(216, 67, 21, 0.1);
}

.feedback-textarea {
    min-height: 150px;
    resize: none;
}

.feedback-submit-btn {
    background: linear-gradient(135deg, #d84315 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(183, 28, 28, 0.2);
}

.feedback-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(183, 28, 28, 0.3);
    background: linear-gradient(135deg, #e65100 0%, #d84315 100%);
}

.feedback-submit-btn:active {
    transform: translateY(-1px);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #d84315;
    font-size: 1.1rem;
    opacity: 0.7;
}

.input-icon-wrapper .feedback-form-control {
    padding-left: 50px;
}

.form-title-wrapper {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.form-title-wrapper h3 {
    color: #b71c1c;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .feedback-form-card {
        padding: 2rem;
    }
    
    .feedback-header {
        text-align: center;
    }
}
