/* CSS Variables for Theming */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #2c5f2d;
    --primary-light: #81C784;
    --accent-color: #FFC107;
    --background-color: #ffffff;
    --surface-color: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #888888;
    --border-color: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

[data-theme="dark"] {
    --background-color: #1a1a1a;
    --surface-color: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    --border-color: #404040;
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-medium: rgba(255, 255, 255, 0.15);
    --shadow-dark: rgba(255, 255, 255, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--accent-color);
    color: #000;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.disclaimer-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.disclaimer-banner i {
    margin-right: 8px;
}

.disclaimer-close {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.disclaimer-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow-light);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-light);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background-color: var(--surface-color);
}

.lang-option:first-child {
    border-radius: 10px 10px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 10px 10px;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-search {
    position: absolute;
    bottom: 50px;
    width: 100%;
    animation: fadeInUp 1s ease 0.9s both;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: var(--background-color);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.search-container input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    background: var(--background-color);
    color: var(--text-primary);
}

.search-container button {
    padding: 20px 30px;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-container button:hover {
    background: #45a049;
}

/* Quick Info Cards */
.quick-info {
    padding: 80px 0;
    background: var(--surface-color);
}

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

.info-card {
    background: var(--background-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.info-card p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sections */
.attractions, .hotels, .activities, .restaurants, .weather, .contact {
    padding: 80px 0;
}

.attractions h2, .hotels h2, .activities h2, .restaurants h2, .weather h2, .contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.attractions h2::after, .hotels h2::after, .activities h2::after, .restaurants h2::after, .weather h2::after, .contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Attractions */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: var(--accent-color);
    font-weight: 600;
}

.rating i {
    margin-right: 5px;
}

.btn-small {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: #45a049;
}

.map-btn {
    background: var(--primary-light) !important;
    color: white !important;
}

.map-btn:hover {
    background: var(--primary-color) !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--background-color);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--primary-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: var(--surface-color);
}

.modal-body {
    padding: 30px;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 8px 16px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.btn-action:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.modal-description {
    margin-bottom: 25px;
}

.modal-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
}

.modal-map h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.map-container {
    height: 250px;
    border-radius: 10px;
    background: var(--surface-color);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.btn-directions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-directions:hover {
    background: #45a049;
}

/* Share Modal */
.share-modal-content {
    max-width: 400px;
}

.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.share-btn i {
    font-size: 1.2rem;
}

/* Hotels */
.hotels {
    background: var(--surface-color);
}

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

.hotel-card {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.hotel-card:hover {
    transform: translateY(-5px);
}

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

.hotel-info {
    padding: 30px;
}

.hotel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.hotel-rating {
    margin-bottom: 15px;
}

.stars {
    color: var(--accent-color);
    margin-right: 10px;
}

.hotel-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hotel-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-book {
    padding: 10px 25px;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: #1e3f1f;
}

/* Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background: var(--background-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.activity-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.activity-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Restaurants */
.restaurants {
    background: var(--surface-color);
}

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

.restaurant-card {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

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

.restaurant-info {
    padding: 30px;
}

.restaurant-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.cuisine {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.restaurant-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-range {
    color: var(--primary-color);
    font-weight: 600;
}

/* Weather */
.weather-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.current-weather, .weather-forecast {
    background: var(--background-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.current-weather h3, .weather-forecast h3 {
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.weather-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.weather-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-right: 30px;
}

.weather-details .temperature {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.weather-details .condition {
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 5px;
}

.weather-details .feels-like {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.weather-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: var(--surface-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.stat span:first-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat span:last-child {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.forecast-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--surface-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.forecast-item .day {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.forecast-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.forecast-item .temp {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Travel Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: var(--background-color);
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

/* Contact */
.contact {
    background: var(--surface-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--background-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #45a049;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #45a049;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    15%, 85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .disclaimer-banner .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-light);
        padding: 20px 0;
        border: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-controls {
        order: -1;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .search-container {
        margin: 0 20px;
    }

    .weather-container {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .forecast-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .forecast-item {
        padding: 15px 8px;
    }

    .weather-stats {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .share-options {
        grid-template-columns: 1fr;
    }

    .lang-dropdown {
        right: -10px;
        min-width: 120px;
    }

    .guide-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
        padding: 30px 20px;
    }

    .guide-section.reverse {
        direction: ltr;
    }

    .guide-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .guide-text h4 {
        font-size: 1.2rem;
        justify-content: center;
    }

    .guide-image img {
        height: 250px;
    }

    .tips-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .itinerary-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .time {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .budget-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

    .hero-content p {
        font-size: 1rem;
    }

    .attractions h2, .hotels h2, .activities h2, .restaurants h2, .weather h2, .contact h2 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .attractions-grid,
    .hotels-grid,
    .restaurants-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .attractions h2, .hotels h2, .activities h2, .restaurants h2, .weather h2, .contact h2, .faq h2, .toll-section h2 {
        font-size: 1.8rem;
    }

    .toll-description {
        font-size: 1rem;
    }

    .disclaimer-footer p {
        font-size: 0.75rem;
    }

    .partnership-text h2 {
        font-size: 1.8rem;
    }

    .partnership-text p {
        font-size: 1rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .btn-contact-business {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }

    .tips-grid-detailed {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tip-detailed {
        padding: 20px;
    }

    .tip-detailed i {
        font-size: 2.5rem;
    }

    .itinerary-tabs {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .tab-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .day-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .day-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .day-header h4 {
        font-size: 1.2rem;
    }

    .day-schedule {
        padding: 20px;
    }

    .schedule-item {
        gap: 10px;
    }

    .time {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .activity h5 {
        font-size: 1.1rem;
    }

    .guide-text h3 {
        font-size: 1.5rem;
    }

    .guide-text h4 {
        font-size: 1.1rem;
    }

    .guide-text p {
        font-size: 1rem;
        text-align: left;
    }

    .guide-image img {
        height: 200px;
    }

    .season-info {
        padding: 20px;
    }

    .local-tips {
        padding: 25px 20px;
    }

    .budget-guide {
        padding: 25px 20px;
    }

    .budget-category {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.4);
        --shadow-dark: rgba(0, 0, 0, 0.5);
    }
}

/* Print styles */
@media print {
    .navbar, .newsletter, .modal {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        height: auto !important;
        background: none !important;
        color: black !important;
        padding: 50px 0 !important;
    }
}

/* FAQ Styles */
.faq {
    padding: 80px 0;
    background: var(--surface-color);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-color);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--surface-color);
}

.faq-question h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin: 0;
    flex-grow: 1;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Toll Section Styles */
.toll-section {
    padding: 80px 0;
    background: var(--background-color);
}

.toll-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
}

.toll-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.toll-info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.toll-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.toll-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.toll-card {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toll-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.toll-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.toll-icon {
    margin-bottom: 20px;
}

.toll-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.toll-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.toll-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.toll-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.toll-note {
    background: var(--surface-color);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.toll-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Footer Disclaimer */
.disclaimer-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #45a049;
    text-align: center;
}

.disclaimer-footer p {
    color: #aaa;
    font-size: 0.8rem;
    line-height: 1.4;
}

.disclaimer-footer i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Enhanced Mobile Support */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 15px;
    }
    
    .nav-controls {
        gap: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .search-container {
        margin: 0 15px;
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-container input {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .search-container button {
        padding: 15px 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card i {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card p {
        font-size: 1.5rem;
    }
    
    .attractions h2, .hotels h2, .activities h2, .restaurants h2, .weather h2, .contact h2, .faq h2, .toll-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .attractions-grid, .hotels-grid, .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .activity-card {
        padding: 30px 20px;
    }
    
    .activity-card i {
        font-size: 2.5rem;
    }
    
    .weather-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .current-weather, .weather-forecast {
        padding: 30px 20px;
    }
    
    .weather-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .weather-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .weather-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .forecast-item {
        padding: 15px 8px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        border-radius: 25px;
    }
    
    .newsletter-form button {
        border-radius: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .toll-pricing {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .toll-card {
        padding: 30px 20px;
    }
    
    .toll-price {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-image img {
        height: 200px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .lang-dropdown {
        right: -10px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .forecast-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .attractions h2, .hotels h2, .activities h2, .restaurants h2, .weather h2, .contact h2, .faq h2, .toll-section h2 {
        font-size: 1.8rem;
    }
    
    .toll-description {
        font-size: 1rem;
    }
    
    .disclaimer-footer p {
        font-size: 0.75rem;
    }

    .partnership-text h2 {
        font-size: 1.8rem;
    }

    .partnership-text p {
        font-size: 1rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .btn-contact-business {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }
}

/* Business Partnership Section */
.business-partnership {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.business-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partnership-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partnership-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
}

.benefit-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card {
    background: white;
    color: var(--text-primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-contact-business {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact-business:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-contact-business i {
    font-size: 1.2rem;
}

.partnership-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.partnership-text h2 {
    font-size: 2.2rem;
}

.partnership-text p {
    font-size: 1.1rem;
}

.partnership-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    padding: 30px 20px;
}

.btn-contact-business {
    padding: 12px 25px;
    font-size: 1rem;
}

/* Travel Guide Section */
.travel-guide {
    padding: 80px 0;
    background: var(--surface-color);
}

.travel-guide h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.travel-guide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.guide-content {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.guide-section.reverse {
    direction: rtl;
}

.guide-section.reverse > * {
    direction: ltr;
}

.guide-text h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.guide-text h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.guide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.season-info {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.season-info:hover {
    transform: translateX(10px);
}

.season-info h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.season-info p {
    margin: 0;
    font-size: 1rem;
}

.local-tips {
    background: var(--background-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.local-tips h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.tips-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip-detailed {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tip-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: var(--primary-color);
}

.tip-detailed i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-detailed h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.tip-detailed p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Itinerary Section */
.itinerary-section {
    padding: 80px 0;
    background: var(--background-color);
}

.itinerary-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
    position: relative;
}

.itinerary-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.itinerary-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 30px;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.itinerary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.itinerary-tab {
    display: none;
}

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

.itinerary-tab h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.itinerary-overview {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
}

.itinerary-overview p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.day-plan {
    background: var(--surface-color);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.day-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.day-number {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.day-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.day-schedule {
    padding: 30px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: var(--background-color);
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.activity h5 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.activity p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.day-summary {
    padding: 30px;
}

.day-summary p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.extended-itinerary {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
}

.day-brief {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.6;
}

.day-brief:last-child {
    border-bottom: none;
}

.day-brief strong {
    color: var(--primary-color);
    font-weight: 600;
}

.budget-guide {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.budget-guide h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.budget-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.budget-category {
    background: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.budget-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.budget-category h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.budget-category p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
} 