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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e74c3c;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 2rem;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.place-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.place-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.place-image i {
    font-size: 2rem;
    color: white;
}

.place-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.place-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.place-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: #e8f4fd;
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.place-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: left;
}

.place-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.place-details strong {
    color: #2c3e50;
}

/* Must See Section */
.must-see-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.must-see-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.must-see-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.must-see-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.must-see-content p {
    color: #666;
}

.must-see-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.must-see-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.must-see-details strong {
    color: #2c3e50;
}

/* Top 10 Grid */
.top10-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.top10-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.top10-card:hover {
    transform: translateY(-3px);
}

.top10-rank {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.top10-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.top10-card p {
    color: #666;
}

/* Route Builder */
.route-builder {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.route-options {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.route-options h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.route-option input[type="radio"] {
    width: 18px;
    height: 18px;
}

.route-option label {
    font-weight: 500;
    color: #2c3e50;
}

.route-map {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #e74c3c;
    transform: scale(1.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-badge {
    background: #e8f4fd;
    color: #3498db;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-badge.featured {
    background: #fdf2f2;
    color: #e74c3c;
}

.service-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: left;
}

.service-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.service-details strong {
    color: #2c3e50;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.event-image {
    height: 150px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image i {
    font-size: 3rem;
    color: white;
}

.event-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.event-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
}

.event-details {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-details span {
    font-size: 0.9rem;
    color: #666;
}

.event-details i {
    margin-right: 0.5rem;
    color: #3498db;
}

/* Food Grid */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.food-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.food-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.food-image i {
    font-size: 2rem;
    color: white;
}

.food-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.food-card p {
    color: #666;
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.transport-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.transport-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.transport-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.transport-card p {
    color: #666;
    margin-bottom: 1rem;
}

.transport-card ul {
    list-style: none;
    padding-left: 0;
}

.transport-card li {
    padding: 0.3rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Modern Top 10 Page Styles */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Top 10 Section */
.top10-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.top10-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.top10-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.top10-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.top10-item.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.top10-item.featured .item-content h3,
.top10-item.featured .item-content p {
    color: white;
}

.rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #2d3748;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.rank-badge i {
    font-size: 1.2rem;
    margin-left: 2px;
}

.top10-item[data-rank="1"] .rank-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    animation: pulse 2s infinite;
}

.top10-item[data-rank="2"] .rank-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 100%);
}

.top10-item[data-rank="3"] .rank-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.top10-item:hover .item-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.overlay-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.item-content {
    padding: 2rem;
}

.item-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.item-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #718096;
}

.detail-icon {
    width: 20px;
    color: #667eea;
}

.item-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Rota Oluştur Sayfası Stilleri */
.route-builder-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.route-builder-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.route-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: #667eea;
    width: 20px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.checkbox-item label {
    font-weight: 500;
    color: #4a5568;
    margin: 0;
}

.btn-generate-route {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-generate-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.route-preview {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: #718096;
}

.route-map {
    background: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #718096;
    font-size: 0.9rem;
}

.route-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
}

.summary-item i {
    color: #667eea;
    width: 20px;
}

.summary-item span {
    color: #4a5568;
    font-size: 0.9rem;
}

.summary-item strong {
    color: #2d3748;
    font-weight: 600;
}

.route-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-save-route,
.btn-share-route,
.btn-print-route {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-save-route {
    background: #48bb78;
    color: white;
}

.btn-share-route {
    background: #4299e1;
    color: white;
}

.btn-print-route {
    background: #ed8936;
    color: white;
}

.btn-save-route:hover,
.btn-share-route:hover,
.btn-print-route:hover {
    transform: translateY(-2px);
}

.btn-save-route:disabled,
.btn-share-route:disabled,
.btn-print-route:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Hazır Rotalar */
.ready-routes-section {
    padding: 5rem 0;
    background: white;
}

.ready-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.route-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.route-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.route-content {
    padding: 1.5rem;
}

.route-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.route-content p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.route-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #718096;
}

.route-details i {
    color: #667eea;
}

.btn-use-route {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-use-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Etkinlikler Sayfası Stilleri */
/* (Mevcut top10-item stilleri kullanılıyor) */

/* Ne Yenir Sayfası Stilleri */
.food-categories-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.food-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.food-category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.food-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.food-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.food-category-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.food-category-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dish-count {
    background: #f7fafc;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Nasıl Giderim Sayfası Stilleri */
.transport-options-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.transport-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.transport-option-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.transport-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.transport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.transport-option-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.transport-option-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.transport-details {
    margin-bottom: 1.5rem;
}

.transport-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.transport-details .detail-item i {
    color: #667eea;
    width: 16px;
}

.btn-transport {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.btn-transport:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Seyahat İpuçları */
.travel-tips-section {
    padding: 5rem 0;
    background: white;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tip-icon i {
    font-size: 1.8rem;
    color: white;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #718096;
    line-height: 1.6;
}

/* Başarı Mesajı */
.success-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideInUp 0.5s ease;
}

.success-message i {
    font-size: 1.2rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İnteraktif Harita */
.map-container {
    background: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.interactive-map {
    min-height: 300px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    color: #718096;
}

.map-placeholder i {
    font-size: 3rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.map-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-map-control {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-map-control:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-map-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Harita İçeriği */
.route-map-content {
    text-align: left;
    padding: 1rem;
}

.route-map-content .map-placeholder {
    height: auto;
    padding: 2rem;
}

/* Harita Noktaları */
.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #667eea;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-point:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-point.visited {
    background: #48bb78;
}

.map-point.current {
    background: #e74c3c;
    animation: pulse 2s infinite;
}

/* Rota Çizgisi */
.route-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transform-origin: left center;
}

/* Harita Grid */
.map-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    height: 300px;
    gap: 1px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.map-cell {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.map-cell:hover {
    background: #edf2f7;
}

.map-cell.landmark {
    background: #fed7d7;
    border-color: #feb2b2;
}

.map-cell.road {
    background: #e6fffa;
    border-color: #81e6d9;
}

.map-cell.water {
    background: #bee3f8;
    border-color: #63b3ed;
}

/* Harita Bilgi Paneli */
.map-info-panel {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    font-size: 0.8rem;
}

.map-info-panel h4 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
    font-size: 0.9rem;
}

.map-info-panel p {
    margin: 0.2rem 0;
    color: #4a5568;
}

/* Nokta Bilgi Modalı */
.point-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.point-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.point-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.point-details i {
    color: #667eea;
    width: 16px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

.modal-actions .btn-primary,
.modal-actions .btn-outline {
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.modal-actions .btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.modal-actions .btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Özel Durak Stilleri */
.map-point.custom-stop {
    background: #f39c12;
    border-color: #e67e22;
}

.map-point.custom-stop:hover {
    background: #e67e22;
}

/* Timeline Bölümü Stilleri */
.route-timeline {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    max-height: 800px;
    overflow-y: auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.timeline-header h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timeline-header h3 i {
    color: #667eea;
}

.timeline-header p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.timeline-container {
    margin-bottom: 2rem;
}

.timeline-list {
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 50px;
    animation: slideInRight 0.5s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #667eea;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #e2e8f0;
    z-index: 2;
}

.timeline-item.current::before {
    background: #e74c3c;
    box-shadow: 0 0 0 3px #fed7d7;
    animation: pulse 2s infinite;
}

.timeline-item.visited::before {
    background: #48bb78;
    box-shadow: 0 0 0 3px #c6f6d5;
}

.timeline-item-content {
    background: #f7fafc;
    border-radius: 15px;
    padding: 1.2rem;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-item.current .timeline-item-content {
    border-left-color: #e74c3c;
    background: #fed7d7;
}

.timeline-item.visited .timeline-item-content {
    border-left-color: #48bb78;
    background: #c6f6d5;
}

.timeline-item-content:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.timeline-item-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    margin: 0;
}

.timeline-item-order {
    background: #667eea;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-item.current .timeline-item-order {
    background: #e74c3c;
}

.timeline-item.visited .timeline-item-order {
    background: #48bb78;
}

.timeline-item-details {
    margin-bottom: 1rem;
}

.timeline-item-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.timeline-item-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #718096;
}

.timeline-meta-item i {
    color: #667eea;
    width: 14px;
}

.timeline-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.timeline-action-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.timeline-action-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.timeline-action-btn.secondary {
    background: #718096;
}

.timeline-action-btn.secondary:hover {
    background: #4a5568;
}

.timeline-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-google-maps,
.btn-export-route {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-google-maps {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
}

.btn-google-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.4);
}

.btn-export-route {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-export-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rota Harita İçeriği */
.route-map-content {
    text-align: left;
}

.route-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.route-header h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.route-header p {
    color: #667eea;
    font-weight: 600;
    margin: 0;
}

.route-places {
    margin-bottom: 1.5rem;
}

.route-places h5 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.route-places ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-places li {
    background: #f7fafc;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 500;
    border-left: 4px solid #667eea;
}

.route-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.route-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #667eea;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
}

.route-stats .stat i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0.5rem 0;
        border-radius: 5px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-toggle i {
        transform: rotate(90deg);
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(-90deg);
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .route-builder {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .places-grid,
    .top10-grid,
    .services-grid,
    .categories-grid,
    .events-grid,
    .food-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }

    .must-see-item {
        flex-direction: column;
        text-align: center;
    }

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

    /* Mobile Slider */
    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

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

    /* Mobile Restaurant Items */
    .restaurant-item {
        flex-direction: column;
    }

    .restaurant-image {
        width: 100%;
        height: 200px;
    }

    .restaurant-details {
        grid-template-columns: 1fr;
    }

    .restaurant-actions {
        justify-content: center;
    }

    /* Mobile Ad Section */
    .ad-section {
        padding: 1.5rem !important;
    }

    .ad-section > div {
        flex-direction: column;
        align-items: center;
    }

    .ad-section > div > div {
        min-width: 100% !important;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .top10-item {
        margin: 0 10px;
    }
    
    .item-content {
        padding: 1.5rem;
    }
    
    .rank-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Rota Oluştur Responsive */
    .route-builder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .route-timeline {
        order: 3;
        margin-top: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .route-summary {
        grid-template-columns: 1fr;
    }
    
    .route-actions {
        flex-direction: column;
    }
    
    .ready-routes-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Yemek Kategorileri Responsive */
    .food-categories-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Ulaşım Seçenekleri Responsive */
    .transport-options-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Seyahat İpuçları Responsive */
    .tips-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

    .place-card,
    .service-card,
    .category-card,
    .event-card,
    .food-card,
    .transport-card {
        padding: 1.5rem;
    }


/* Location Button Styles */
.location-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    text-decoration: none;
}

.location-btn:active {
    transform: translateY(0);
}

.location-btn i {
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.location-btn span {
    font-weight: 500;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .location-btn i {
        font-size: 0.8rem;
    }
}

/* Route Builder Modern Styles */
.route-builder-modern {
    margin-top: 3rem;
}

.route-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.route-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.route-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.route-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.route-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.route-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.route-badge.quick {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
}

.route-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.route-badge.complete {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.route-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.route-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
}

.route-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    background: #f3f4f6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #6b7280;
}

.route-card-footer {
    margin-top: 2rem;
}

.select-route-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-route-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Interactive Map Styles */
.route-map-container {
    margin-top: 3rem;
}

.map-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.map-controls {
    display: flex;
    gap: 1rem;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control-btn:hover {
    background: #667eea;
    color: white;
}

.interactive-map {
    height: 400px;
    background: #f9fafb;
    border-radius: 15px;
    position: relative;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.map-action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.map-action-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.map-action-btn:hover {
    transform: translateY(-2px);
}

/* Route Details Modern Styles */
.route-details-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.route-detail-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.route-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.route-title-section {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.route-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.route-icon-large.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.route-icon-large.complete {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.route-title-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.difficulty-easy {
    background: #dcfce7;
    color: #16a34a;
}

.difficulty-medium {
    background: #fed7aa;
    color: #ea580c;
}

.difficulty-hard {
    background: #fce7f3;
    color: #c2410c;
}

.route-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* Timeline Styles */
.route-timeline {
    position: relative;
    margin-left: 2rem;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: relative;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #667eea;
    z-index: 2;
}

.timeline-marker.start {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-color: #22c55e;
    color: white;
}

.timeline-marker.end {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #dc2626;
    color: white;
}

.timeline-content {
    flex: 1;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.timeline-time {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.detail-tag {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

/* Tips Modern Styles */
.tips-container-modern {
    margin-top: 3rem;
}

.tips-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tip-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.tip-priority {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tip-card-modern.essential .tip-priority {
    background: #dcfce7;
    color: #16a34a;
}

.tip-card-modern.practical .tip-priority {
    background: #dbeafe;
    color: #2563eb;
}

.tip-card-modern.photo .tip-priority {
    background: #fef3c7;
    color: #d97706;
}

.tip-card-modern.food .tip-priority {
    background: #fee2e2;
    color: #dc2626;
}

.tip-card-modern.cultural .tip-priority {
    background: #f3e8ff;
    color: #7c3aed;
}

.tip-card-modern.transport .tip-priority {
    background: #ecfdf5;
    color: #059669;
}

.tip-content h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.tip-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.detail-item {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

/* Emergency Info Styles */
.emergency-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.emergency-card, .weather-info-card {
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-radius: 20px;
    padding: 2rem;
    border-left: 5px solid #dc2626;
}

.weather-info-card {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-left-color: #2563eb;
}

.emergency-header, .weather-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.emergency-header i, .weather-header i {
    font-size: 1.5rem;
    color: #dc2626;
}

.weather-header i {
    color: #2563eb;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-number {
    font-weight: bold;
    color: #dc2626;
}

.weather-seasons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.season-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.season-name {
    font-weight: bold;
    color: #1f2937;
}

.season-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .route-selection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .route-header-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .route-title-section {
        flex-direction: column;
        text-align: center;
    }
    
    .route-actions {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .route-timeline {
        margin-left: 0;
    }
    
    .route-timeline::before {
        left: 20px;
    }
    
    .tips-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .emergency-info-section {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-wrapper {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slide-rating {
    margin-bottom: 2rem;
}

.slide-rating .stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.slide-rating .rating-text {
    font-size: 1rem;
    opacity: 0.9;
}

.slide-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.slide-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Restaurant List */
.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.restaurant-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
}

.restaurant-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
    position: relative;
    width: 300px;
    height: 250px;
    flex-shrink: 0;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-badge.featured {
    background: #e74c3c;
}

.restaurant-badge.premium {
    background: #f39c12;
}

.restaurant-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
}

.restaurant-rating .stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.restaurant-rating .rating-number {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}

.restaurant-content {
    padding: 2rem;
    flex: 1;
}

.restaurant-header {
    margin-bottom: 1rem;
}

.restaurant-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.restaurant-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.restaurant-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.restaurant-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.detail-item i {
    color: #3498db;
    width: 20px;
}

.restaurant-specialties {
    margin-bottom: 1.5rem;
}

.restaurant-specialties h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.specialties-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialty {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #3498db;
    color: white;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-outline:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Ad Section Styles */
.ad-section-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

.ad-content {
    text-align: center;
}

.ad-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ad-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.ad-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ad-package {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.ad-package:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ad-package h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ad-package p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.ad-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.ad-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
}

/* Compact Ad Section */
.ad-section-places {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 2rem 0;
    color: white;
}

.ad-content-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ad-text-compact h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ad-text-compact p {
    font-size: 1rem;
    opacity: 0.9;
}

.ad-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.ad-button-compact:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Modern Section Headers */
.section-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-modern i {
    color: #f39c12;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Must-See Section */
.must-see-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.must-see-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.must-see-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.must-see-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.must-see-badge i {
    font-size: 0.8rem;
    margin-top: -2px;
}

.must-see-image {
    height: 200px;
    overflow: hidden;
}

.must-see-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.must-see-card:hover .must-see-image img {
    transform: scale(1.1);
}

.must-see-content {
    padding: 1.5rem;
}

.must-see-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.must-see-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.must-see-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature i {
    color: #667eea;
}

.must-see-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.must-see-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Modern Top 10 Section */
.top10-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.top10-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.top10-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.top10-rank-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.top10-gold .top10-rank-modern {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
}

.top10-silver .top10-rank-modern {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #2c3e50;
}

.top10-bronze .top10-rank-modern {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: white;
}

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

.top10-rank-modern i {
    font-size: 0.7rem;
    margin-top: -2px;
}

.top10-image {
    height: 180px;
    overflow: hidden;
}

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

.top10-card-modern:hover .top10-image img {
    transform: scale(1.1);
}

.top10-content {
    padding: 1.2rem;
}

.top10-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.top10-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.top10-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat i {
    color: #667eea;
}

/* Modern CTA Buttons */
.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .ad-packages {
        grid-template-columns: 1fr;
    }
    
    .ad-content-compact {
        flex-direction: column;
        text-align: center;
    }
    
    .must-see-grid,
    .top10-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .section-title-modern {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .ad-text h3 {
        font-size: 2rem;
    }
    
    .ad-package {
        padding: 1.5rem;
    }
}

/* Mobile Bottom Tab Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e1e8ed;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.mobile-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    text-decoration: none;
}

.mobile-tab.active {
    color: #667eea;
}

.mobile-tab i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-tab span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.mobile-tab:hover {
    color: #667eea;
    transform: translateY(-2px);
}

/* Mobile Tab Overlay */
.mobile-tab-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.mobile-tab-overlay.active {
    display: block;
}

.mobile-tab-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    background: white;
    z-index: 2;
}

.mobile-tab-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.mobile-tab-close {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.mobile-tab-close:hover {
    background: #e9ecef;
    color: #495057;
}

/* Mobile Tab Panels */
.mobile-tab-panel {
    display: none;
    padding: 1.5rem;
}

.mobile-tab-panel.active {
    display: block;
}

/* Home Tab Content */
.mobile-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mobile-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-quick-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    color: #667eea;
}

.mobile-quick-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.mobile-quick-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Categories Tab Content */
.mobile-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-category-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-category-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.mobile-category-item i:first-child {
    font-size: 1.2rem;
    color: #667eea;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-category-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-category-item i:last-child {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Services Tab Content */
.mobile-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-service-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.mobile-service-item i:first-child {
    font-size: 1.2rem;
    color: #667eea;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-service-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-service-item i:last-child {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Route Tab Content */
.mobile-route-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-route-option {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-route-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.mobile-route-option i {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.mobile-route-option span {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mobile-route-option small {
    color: #6c757d;
    font-size: 0.85rem;
}

/* More Tab Content */
.mobile-more-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mobile-more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.mobile-more-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.mobile-more-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.mobile-more-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design for Mobile Navigation */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Add bottom padding to body to account for mobile nav */
    body {
        padding-bottom: 80px;
    }
    
    /* Hide desktop navigation on mobile */
    .navbar {
        display: none;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav,
    .mobile-tab-overlay {
        display: none !important;
    }
    
    /* Remove bottom padding on desktop */
    body {
        padding-bottom: 0;
    }
}

/* Mobile Header Styles */
.mobile-header {
    display: none;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

/* Logo Styles */
.logo-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(102, 126, 234, 0.4));
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 15px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.logo-icon:hover .logo-svg {
    filter: drop-shadow(0 6px 20px rgba(102, 126, 234, 0.4));
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

/* Desktop Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Mobile Logo */
.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Responsive Logo Adjustments */
@media (max-width: 480px) {
    .mobile-logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
