.ancient-city-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.ancient-city-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ancient-city-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ancient-city-section .section-header h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
    position: relative;
}

.ancient-city-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #FFA726, #3F51B5);
    border-radius: 2px;
}

.ancient-city-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ancient-city-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.ancient-city-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ancient-city-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ancient-city-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.image-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.ancient-city-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.history-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #3F51B5;
}

.history-item:hover {
    transform: translateX(10px);
}

.history-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.history-content h4 {
    color: #2C3E50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.history-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cultural-significance {
    background: linear-gradient(135deg, #FFA726, #FF9800);
    color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 167, 38, 0.3);
}

.cultural-significance h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.cultural-significance p {
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.significance-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid white;
    backdrop-filter: blur(10px);
}

.point strong {
    color: #E3F2FD;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ancient-city-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ancient-city-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .ancient-city-section {
        padding: 60px 0;
    }
    
    .ancient-city-section .section-header h2 {
        font-size: 2rem;
    }
    
    .history-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cultural-significance {
        padding: 25px;
    }
}