/* ===== Destination Page Styles ===== */

/* Navigation */
.dest-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 5%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.dest-hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 6rem 5% 4rem;
}

.dest-hero-content {
    max-width: 900px;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
}

.dest-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dest-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.dest-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dest-quick-facts .fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.dest-quick-facts .fact i {
    color: var(--secondary-color);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Main Content Layout */
.dest-content {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Table of Contents Sidebar */
.toc-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.toc-container {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
}

.toc-container h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toc-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-container li {
    margin-bottom: 0.5rem;
}

.toc-container a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.toc-container a:hover,
.toc-container a.active {
    color: var(--primary-color);
    background: white;
}

/* Article Content */
.dest-article {
    flex: 1;
    min-width: 0;
}

.dest-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.dest-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dest-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dest-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-primary);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 2rem 0;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    margin: 0;
    color: var(--text-primary);
}

/* Budget Cards */
.budget-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.budget-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.budget-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.budget-header {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.budget-card.budget .budget-header {
    background: linear-gradient(135deg, #10b981, #059669);
}

.budget-card.moderate .budget-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.budget-card.luxury .budget-header {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.budget-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.budget-header h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.budget-header .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.budget-card ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.budget-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.budget-card li:last-child {
    border-bottom: none;
}

.budget-card li strong {
    color: var(--text-primary);
}

.budget-tip {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.budget-tip i {
    color: var(--accent-color);
}

/* Cost Table */
.cost-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cost-table h3 {
    margin-bottom: 1rem;
}

.cost-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cost-table th,
.cost-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cost-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
}

.cost-table td {
    color: var(--text-secondary);
}

.cost-table tbody tr:hover {
    background: var(--bg-light);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    margin: 2rem 0;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-box .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-box .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Season Cards */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.season-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid;
}

.season-card.spring { border-color: #10b981; }
.season-card.summer { border-color: #f59e0b; }
.season-card.fall { border-color: #f97316; }
.season-card.winter { border-color: #3b82f6; }

.season-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.season-card.spring h3 i { color: #10b981; }
.season-card.summer h3 i { color: #f59e0b; }
.season-card.fall h3 i { color: #f97316; }
.season-card.winter h3 i { color: #3b82f6; }

.season-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.rating-stars {
    color: #f59e0b;
}

.season-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.season-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.season-verdict {
    font-style: italic;
    color: var(--text-primary);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

/* Neighborhood Cards */
.neighborhood-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.neighborhood-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.neighborhood-content {
    padding: 1.5rem;
}

.neighborhood-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.neighborhood-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.neighborhood-tags .tag {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.neighborhood-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.neighborhood-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.neighborhood-prices i {
    color: var(--primary-color);
}

.best-for {
    margin: 0;
    color: var(--text-primary);
}

/* Attractions List */
.attractions-list {
    margin: 2rem 0;
}

.attraction-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}

.attraction-item:hover {
    box-shadow: var(--shadow-md);
}

.attraction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attraction-icon i {
    font-size: 1.5rem;
    color: white;
}

.attraction-content {
    flex: 1;
}

.attraction-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.attraction-content p {
    margin-bottom: 0.75rem;
}

.attraction-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.attraction-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.attraction-details i {
    color: var(--primary-color);
}

.pro-tip {
    background: #fef3c7;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin: 0;
    color: #92400e;
}

/* Free Attractions Grid */
.free-attractions {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: var(--radius-xl);
}

.free-attractions h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #065f46;
}

.free-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.free-item {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.free-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: block;
}

.free-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.free-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Food Section */
.food-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.food-category {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.food-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.food-category h3 i {
    color: var(--accent-color);
}

.food-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.food-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.food-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.food-list li p {
    margin: 0;
    font-size: 0.9rem;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.tips-list li strong {
    color: var(--text-primary);
}

/* Restaurant Recommendations */
.restaurant-recs {
    margin: 2rem 0;
}

.restaurant-recs h3 {
    margin-bottom: 1.5rem;
}

.recs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rec-category {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.rec-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.rec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rec-category li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rec-category li strong {
    color: var(--text-primary);
}

/* Transport Section */
.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.transport-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.transport-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.transport-icon i {
    font-size: 1.75rem;
    color: white;
}

.transport-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.transport-card p {
    font-size: 0.9rem;
    text-align: left;
}

.transport-prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.transport-prices span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.transport-tips {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

.transport-tips h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.transport-tips h3 i {
    color: var(--accent-color);
}

.transport-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-tips li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.transport-tips li strong {
    color: var(--text-primary);
}

/* Money-Saving Tips Grid */
.tips-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    padding-top: 2.5rem;
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.tip-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tip-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Itineraries */
.itinerary-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.itinerary-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.itinerary-tab:hover {
    background: #e2e8f0;
}

.itinerary-tab.active {
    background: var(--primary-color);
    color: white;
}

.itinerary-content {
    display: none;
}

.itinerary-content.active {
    display: block;
}

.itinerary-content h3 {
    margin-bottom: 0.5rem;
}

.itinerary-budget {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.day-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.day-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-number {
    font-weight: 700;
    font-size: 1.1rem;
}

.day-title {
    opacity: 0.9;
}

.day-card ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.day-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.day-card li strong {
    color: var(--text-primary);
}

.day-card > p {
    padding: 1.5rem;
    margin: 0;
}

/* FAQ Section */
.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
}

/* Final CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: var(--radius-2xl);
}

.cta-section h2 {
    justify-content: center;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Related Destinations */
.related-destinations {
    background: var(--bg-light);
    padding: 4rem 5%;
}

.related-destinations h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover img {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.related-overlay h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
}

.related-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Footer */
.dest-footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .toc-sidebar {
        display: none;
    }

    .dest-content {
        padding: 2rem 5%;
    }
}

@media (max-width: 768px) {
    .dest-hero {
        min-height: 60vh;
        padding: 5rem 5% 2rem;
    }

    .dest-hero h1 {
        font-size: 2.5rem;
    }

    .dest-subtitle {
        font-size: 1.1rem;
    }

    .dest-quick-facts {
        gap: 0.75rem;
    }

    .dest-quick-facts .fact {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .nav-links {
        display: none;
    }

    .dest-section h2 {
        font-size: 1.5rem;
    }

    .budget-cards,
    .seasons-grid,
    .neighborhood-cards,
    .food-categories,
    .transport-options {
        grid-template-columns: 1fr;
    }

    .attraction-item {
        flex-direction: column;
    }

    .attraction-icon {
        align-self: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .itinerary-tabs {
        flex-wrap: wrap;
    }

    .itinerary-tab {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dest-hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .cost-table {
        font-size: 0.85rem;
    }

    .cost-table th,
    .cost-table td {
        padding: 0.75rem;
    }
}
