/* Universal Combined CSS Stylesheet */
/* Supports: landmarks, towns, stations, cities, and general content */

.universal-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 10px 10px 10px 10px;
        }

/* Different gradient themes */
.hero-section.landmark-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-section.town-theme {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.hero-section.station-theme {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.hero-section.city-theme {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-section .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Quick Info/Stats Cards */
.quick-info, .quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card, .stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3, .stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.info-card p, .stat-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 5px;
}

.section {
    margin-bottom: 50px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    border-left: 5px solid #3498db;
}

/* Section theme colors */
.section.landmark-theme {
    border-left-color: #3498db;
}

.section.town-theme {
    border-left-color: #3498db;
}

.section.station-theme {
    border-left-color: #D2691E;
}

.section.city-theme {
    border-left-color: #e74c3c;
}

.section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

/* Theme-specific h2 colors */
.section.landmark-theme h2 {
    border-bottom-color: #3498db;
}

.section.town-theme h2 {
    border-bottom-color: #3498db;
}

.section.station-theme h2 {
    color: #8B4513;
    border-bottom-color: #D2691E;
}

.section.city-theme h2 {
    border-bottom-color: #e74c3c;
}

.section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.section.station-theme h3 {
    color: #A0522D;
}

.section p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
}

/* Highlight Boxes */
   .highlight-box {
            background: linear-gradient(45deg, #ff6b6b, #ffa726);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
        }

.highlight-box.landmark-theme {
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
}

.highlight-box.town-theme {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
}

.highlight-box.station-theme {
    background: linear-gradient(45deg, #DC143C, #FF6347);
}

.highlight-box.city-theme {
    background: linear-gradient(45deg, #8e44ad, #3498db);
}

.highlight-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Universal Grid Systems */
.feature-grid, .service-grid, .landmark-grid, .destinations-grid, .train-info-grid, .traffic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.destinations-grid, .train-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-grid, .landmark-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.landmark-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Universal Cards */
.feature-card, .service-card, .landmark-card, .destination-card, .train-card, .traffic-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Theme-specific card borders */
.feature-card.landmark-theme, .service-card.landmark-theme, .landmark-card.landmark-theme {
    border-left-color: #3498db;
}

.feature-card.town-theme, .service-card.town-theme, .destination-card.town-theme {
    border-top: 3px solid #3498db;
    border-left: none;
}

.feature-card.station-theme, .service-card.station-theme, .train-card, .destination-card.station-theme {
    border-left-color: #D2691E;
}

.feature-card.city-theme, .service-card.city-theme {
    border-top: 4px solid #e74c3c;
    border-left: none;
}

.service-card:hover, .landmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h4, .service-card h4, .landmark-card h4, .destination-card h4, .train-card h4, .traffic-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card.station-theme h4, .service-card.station-theme h4, .train-card h4, .destination-card.station-theme h4 {
    color: #8B4513;
}

/* Details Lists */
.details-list {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

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

.details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list strong {
    color: #2c3e50;
    min-width: 200px;
    display: inline-block;
}

.details-list.station-theme strong {
    color: #8B4513;
}

/* Traffic Insights Special Section */
.traffic-insights {
    background: linear-gradient(135deg, #16a085, #27ae60);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin: 30px 0;
}

.traffic-insights h2 {
    color: white;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.traffic-insights h3 {
    color: rgba(255, 255, 255, 0.9);
}

.traffic-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border-left: none;
}

/* Features List Special */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.feature-item::before {
    content: '✓';
    color: #2ecc71;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Maps */
.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Call-to-Action Sections */
    .cta-section {
            background: linear-gradient(45deg, #2ecc71, #27ae60);
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            margin: 30px 0;
        }
        

.cta-section.landmark-theme {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.cta-section.town-theme {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.cta-section.station-theme {
    background: linear-gradient(45deg, #FF4500, #FF6347);
}

.cta-section.city-theme {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.cta-section h2 {
    margin-bottom: 25px;
    border: none;
    color: white;
    font-size: 2.2rem;
}

.cta-buttons {
    margin: 30px 0;
}

.cta-button, .btn {
    display: inline-block;
    background: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
}

.cta-button.landmark-theme, .btn.landmark-theme {
    color: #27ae60;
}

.cta-button.town-theme, .btn.town-theme {
    color: #27ae60;
}

.cta-button.station-theme, .btn.station-theme {
    color: #FF4500;
}

.cta-button.city-theme, .btn.city-theme {
    color: #e74c3c;
}

.cta-button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.landmark-card .btn {
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.landmark-card .btn:hover {
    background: #219a52;
    transform: none;
    box-shadow: none;
}

/* Icons */
.icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .section {
        padding: 25px;
    }
    
    .quick-info, .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid, .service-grid, .landmark-grid, .destinations-grid, .train-info-grid, .traffic-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}