/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    color: #0077BE;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #FFD700, #FF7F50);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: #0096A4;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #0077BE;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF7F50;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
header {
    background: linear-gradient(135deg, #0077BE, #0096A4);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    margin-bottom: 0;
    font-size: 2rem;
}

.logo p {
    color: #FFD700;
    margin-bottom: 0;
    font-weight: 600;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFD700;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 119, 190, 0.7), rgba(0, 150, 164, 0.7)), url('img/photo-1697729798591-8b7e1b271515.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #FFD700, #FF7F50);
    color: #003366 !important;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: #003366 !important;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #0077BE !important;
    border: 2px solid #0077BE;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #0077BE;
    color: white !important;
}

/* Featured Attractions */
.featured-attractions {
    padding: 80px 0;
    background-color: white;
}

.featured-attractions h2 {
    text-align: center;
    margin-bottom: 50px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 119, 190, 0.2);
}

.attraction-card img {
    height: 200px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 20px 20px 0;
}

.attraction-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Special Offers */
.special-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.offers-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.offer-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-image img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-image:hover img {
    transform: scale(1.05);
}

.offer-text {
    flex: 1;
}

.offer-text h3 {
    font-size: 2.2rem;
}

/* Visit Info */
.visit-info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #0077BE, #0096A4);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #FFD700;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 119, 190, 0.8), rgba(0, 150, 164, 0.8)), url('img/photo-1583341432666-b59fd0c175b2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Attractions List */
.attractions-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.attraction-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.attraction-item.reverse {
    flex-direction: row-reverse;
}

.attraction-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.attraction-image img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-image:hover img {
    transform: scale(1.05);
}

.attraction-details {
    flex: 1;
}

.attraction-details ul {
    margin: 20px 0;
}

.attraction-details ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.attraction-details ul li:before {
    content: "•";
    color: #FF7F50;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Ticket Options */
.ticket-options {
    padding: 80px 0;
    background-color: white;
}

.ticket-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ticket-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid #e6f7ff;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 119, 190, 0.2);
}

.ticket-card.featured {
    border: 2px solid #FFD700;
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(to right, #FFD700, #FF7F50);
    color: #003366;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.ticket-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0077BE;
    margin-bottom: 25px;
}

.ticket-card ul {
    margin: 25px 0;
    text-align: left;
}

.ticket-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #e6f7ff;
}

.ticket-card ul li:last-child {
    border-bottom: none;
}

.ticket-button {
    display: inline-block;
    background: linear-gradient(to right, #0077BE, #0096A4);
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: linear-gradient(to right, #0096A4, #0077BE);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 150, 164, 0.3);
}

.special-offers-section .offer-card {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #FFD700;
}

.offer-card h3 {
    color: #0077BE;
}

.offer-validity {
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.booking-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #FFD700, #FF7F50);
    color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.booking-cta {
    text-align: center;
    margin-top: 30px;
}

/* Plan Visit */
.visit-details {
    padding: 80px 0;
    background-color: white;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.visit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visit-card h2 {
    text-align: center;
    margin-bottom: 25px;
}

.visit-card h3 {
    margin-top: 20px;
    color: #0077BE;
}

.note {
    background: #fff8e6;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #FFD700;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FF7F50;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.5);
    animation: pulse 2s infinite;
}

.map-marker:hover .marker-info {
    display: block;
}

.marker-info {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    text-align: center;
    z-index: 10;
}

.marker-info h4 {
    margin-bottom: 0;
    color: #0077BE;
    font-size: 1rem;
}

.marker-info:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 127, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0);
    }
}

/* Contact */
.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #0077BE;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    background: #0077BE;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0096A4;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0077BE;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6f7ff;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077BE;
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.2);
}

.location-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-embed img {
    height: 400px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .offers-content,
    .attraction-item {
        flex-direction: column;
    }
    
    .attraction-item.reverse {
        flex-direction: column;
    }
    
    .offer-image,
    .attraction-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .ticket-card.featured {
        transform: scale(1);
    }
    
    .ticket-card.featured:hover {
        transform: translateY(-10px);
    }
}