/* Section Container */
.attractions-section {
    padding: 4rem 1rem;
    max-width: 1100px; /* Purane sections jaisa same width */
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

/* Header Styles */
.attractions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.attractions-title {
    font-family: 'Georgia', serif;
    color: #1e293b;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.attractions-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout for Cards */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 2rem;
}

/* Individual Card Styling */
.attraction-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden; /* Yeh images ko round corners ke andar rakhega */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Card Image Styling */
.attraction-image {
    width: 100%;
    height: 250px; /* Image ki height fix karne ke liye */
    object-fit: cover; /* Image stretch nahi hogi, perfectly crop ho jayegi */
    display: block;
}

/* Card Content Styling */
.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-family: 'Georgia', serif;
    color: #1e293b;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.attraction-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}



/* Itinerary Section Wrapper */
.itinerary-section {
    padding: 4rem 1rem;
    background-color: #ffffff; /* Page ka background color */
    font-family: 'Arial', sans-serif;
}

/* Container limits width to keep text well-grouped in the center */
.itinerary-container {
    max-width: 750px; /* Thoda chota rakha hai taaki text center me achha dikhe */
    margin: 0 auto;
    text-align: center;
}

/* Typography for Heading */
.itinerary-title {
    font-family: 'Georgia', serif;
    color: #1e293b;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

/* Typography for Subtitle */
.itinerary-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* List Container styling */
.itinerary-list {
    text-align: left; /* Text ko left align karne ke liye */
    max-width: 600px;
    margin: 0 auto; /* Pure block ko center me rakhne ke liye */
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Dono points ke beech ka gap */
}

/* Individual List Item */
.itinerary-item {
    display: flex;
    align-items: flex-start; /* Icon aur text ko top se align karta hai */
    gap: 0.8rem; /* Icon aur text ke beech ka space */
}

/* Icon Box */
.itinerary-icon {
    flex-shrink: 0; /* Icon size maintain rahega, compress nahi hoga */
    margin-top: 2px; /* Text line height ke sath visually balance karne ke liye */
}

/* Text styling inside list */
.itinerary-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Bold text for the start of the list items */
.itinerary-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr; /* Mobile screens par 1 column */
    }
    
    .attraction-img {
        height: 200px; /* Mobile par image thodi choti taaki screen pe achi lage */
    }
}