/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffa500;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.nav-logo h2 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo h2 a:hover {
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffa500;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffa500, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.3));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 165, 0, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    border: 2px solid rgba(255, 165, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 165, 0, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.3rem;
    color: #ccc;
    opacity: 0.8;
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    display: grid;
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: #ffa500;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.stat-item h3 {
    color: #ffa500;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ccc;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Attractions Section */
.attractions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.attractions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    clip-path: polygon(0 100%, 100% 50%, 100% 0, 0 0);
}

.attractions .section-header h2 {
    color: #ffa500;
    -webkit-text-fill-color: #ffa500;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.attraction-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.1);
}

.attraction-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

.image-placeholder span {
    z-index: 2;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Image placeholders */
.image-placeholder.ayasofya {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.image-placeholder.topkapi {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
}

.image-placeholder.sultanahmet {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
}

.image-placeholder.galata {
    background: linear-gradient(135deg, #ff4500, #ff6347);
}

.image-placeholder.suleymaniye {
    background: linear-gradient(135deg, #ff6347, #ff7f50);
}

.image-placeholder.dolmabahce {
    background: linear-gradient(135deg, #ff7f50, #ffa07a);
}

.image-placeholder.yerebatan {
    background: linear-gradient(135deg, #ffa07a, #ffb6c1);
}

.image-placeholder.kizkulesi {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.image-placeholder.kariye {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.image-placeholder.belgrad {
    background-image: url('file:///C:/Users/yigit/.gemini/antigravity/brain/4d399885-0dc1-49ee-b517-666c2307473a/belgrad_orman_1777819685799.png');
    background-size: cover;
    background-position: center;
}

.image-placeholder.caddebostan {
    background-image: url('file:///C:/Users/yigit/.gemini/antigravity/brain/4d399885-0dc1-49ee-b517-666c2307473a/caddebostan_sahili_1777819700846.png');
    background-size: cover;
    background-position: center;
}

.image-placeholder.macka {
    background-image: url('file:///C:/Users/yigit/.gemini/antigravity/brain/4d399885-0dc1-49ee-b517-666c2307473a/macka_parki_1777819715784.png');
    background-size: cover;
    background-position: center;
}

.attraction-content {
    padding: 2.5rem;
}

.attraction-content h3 {
    color: #ffa500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.attraction-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border-left: 3px solid #ffa500;
}

.detail-item .label {
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-item .value {
    color: #ffa500;
    font-weight: 700;
    font-size: 1rem;
}

.attraction-description {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Historical Section */
.historical {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.historical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.historical .section-header h2 {
    color: #ffa500;
    -webkit-text-fill-color: #ffa500;
}

.historical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.historical-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 165, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.historical-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.1);
}

.historical-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.historical-content {
    padding: 2.5rem;
}

.historical-content h3 {
    color: #ffa500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.historical-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.historical-description {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.historical-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #ffa500;
}

.contact-item h3 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-item p {
    color: #ccc;
    font-size: 1.1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    clip-path: polygon(0 100%, 100% 50%, 100% 0, 0 0);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.footer-section h3 {
    color: #ffa500;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: #ffa500;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    color: #ffa500;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-3px);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    color: #ccc;
    opacity: 0.7;
    font-size: 1rem;
}

/* Clickable Cards */
.clickable {
    cursor: pointer;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: inherit;
}

.card-overlay span {
    color: #ffa500;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.clickable:hover .card-overlay {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(20px);
}

.close {
    color: #ffa500;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ff8c00;
    transform: scale(1.1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.modal-header h2 {
    color: #ffa500;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-body ul {
    color: #ccc;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-body .highlight {
    color: #ffa500;
    font-weight: 600;
}

.modal-body .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-body .info-item {
    background: rgba(255, 165, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #ffa500;
}

.modal-body .info-item h4 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal-body .info-item p {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
}

/* Map button styles */
.map-button-container {
    margin-top: 25px;
    text-align: center;
}

.map-button {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.map-button:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.map-button i {
    font-size: 1.1rem;
}

/* Map modal styles */
.map-modal-content {
    max-width: 900px;
    max-height: 85vh;
}

#map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: #2a2a2a;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.map-info {
    background: rgba(255, 165, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.map-info p {
    margin: 10px 0;
    color: #e0e0e0;
    font-size: 1rem;
}

.map-info strong {
    color: #ffa500;
}

.map-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.map-action-btn {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.map-action-btn:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.map-action-btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attractions-grid,
    .historical-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .map-modal-content {
        max-width: 95%;
        margin: 5% auto;
    }
    
    #map {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8c00, #ff6b35);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
} 