* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e8c547;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
    flex: 1;
}

.logo img {
    height: 60px;
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
}

.social-links {
    flex: 1;
    text-align: right;
}

.social-links a {
    color: var(--text-dark);
    margin-left: 15px;
    text-decoration: none;
    font-size: 18px;
}

/* Navigation Styles */
nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0;
    position: relative;
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    text-decoration: none;
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

nav ul li a:hover i {
    transform: scale(1.2) rotate(-5deg);
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a528, #e8c547, #f4d858);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

nav ul li a:hover {
    color: #d4a528;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 40, 0.08) 100%);
}

nav ul li a:hover::before {
    width: 80%;
}

nav ul li a.active {
    color: #d4a528;
    background: linear-gradient(180deg, rgba(212, 165, 40, 0.05) 0%, rgba(212, 165, 40, 0.12) 100%);
    font-weight: 700;
}

nav ul li a.active::before {
    width: 80%;
}

/* Carousel Section (Old - for reference) */
.carousel-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.carousel-section .carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: white;
}

.carousel-slides {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.carousel-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.carousel-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

.carousel-slide.active .carousel-image img {
    transform: scale(1.05);
}

.carousel-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.carousel-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.carousel-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.carousel-info .btn {
    align-self: flex-start;
}

/* Carousel Navigation */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 4px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary-color);
    color: white;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    padding: 25px 0;
    background: white;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.banner-carousel .carousel-container {
    position: relative;
    width: 100%;
    max-width: none;
    height: 650px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.carousel-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 4px;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.95);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 20px;
}

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

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background: #d4b03c;
}

/* Tour Grid */
.tour-grid {
    padding: 60px 0;
}

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

.tour-card {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

.tour-card:hover {
    transform: scale(1.05);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.tour-card h3 {
    font-size: 14px;
    font-weight: normal;
}

/* About Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.about-hero p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.what-we-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #ffd89b 50%, #19547b 100%);
}

.what-we-offer h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 5px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-item h3::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    text-align: center;
    line-height: 30px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Tour Detail Page */
.tour-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.tour-header h1 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 48px;
    text-align: center;
}

.itinerary {
    padding: 60px 0;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.day-item {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.day-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.day-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.day-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 15px;
}

/* Destination Navigation */
.destination-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.dest-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    max-width: 45%;
}

.dest-nav-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.dest-nav-link.prev:hover {
    transform: translateX(-5px);
}

.dest-nav-arrow {
    font-size: 24px;
    font-weight: bold;
}

.dest-nav-content {
    display: flex;
    flex-direction: column;
}

.dest-nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.dest-nav-title {
    font-size: 16px;
    font-weight: 600;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-destinations h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-info p {
    line-height: 1.8;
    color: #ccc;
}

.footer-destinations a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    background: #3a4f5f;
    color: white;
    font-family: 'Courier New', monospace;
}

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

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    min-width: 44px;
    min-height: 44px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

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

    nav ul li a {
        padding: 18px 25px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 40px;
    }

    /* Banner carousel for tablets */
    .carousel-container {
        height: 500px;
    }

    .carousel-content h1 {
        font-size: 40px;
    }

    .services-grid {
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }

    .carousel-slide.active {
        grid-template-columns: 1fr;
    }

    .carousel-image {
        min-height: 300px;
    }

    .carousel-info {
        padding: 30px 25px;
    }

    .carousel-info h3 {
        font-size: 22px;
    }

    .carousel-info p {
        font-size: 14px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 12px 16px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Banner carousel responsive */
    .carousel-container {
        height: 400px;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .carousel-control {
        padding: 12px 16px;
        font-size: 18px;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .logo img {
        height: 45px;
    }

    .header-title {
        order: 2;
        flex: 1;
        text-align: center;
        margin-top: 0;
    }

    .header-title span {
        font-size: 18px !important;
    }

    .social-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 18px 20px;
        justify-content: center;
        font-size: 14px;
    }

    nav ul li a::before {
        display: none;
    }

    nav ul li a.active {
        border-left: 4px solid #d4a528;
    }

    .grid,
    .services-grid,
    .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        height: 350px;
    }

    /* Banner carousel for small mobile */
    .carousel-container {
        height: 300px;
    }

    .carousel-content h1 {
        font-size: 24px;
        padding: 0 15px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero h1,
    .about-hero h1,
    .tour-header h1,
    .destination-hero h1 {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 20px;
    }

    .hero p,
    .about-hero p,
    .destination-hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Destination page mobile layout */
    .destination-hero {
        height: 350px;
    }

    section > div > div > div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    section > div > div > div[style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 30px;
    }

    .tour-grid {
        padding: 40px 0;
    }

    .tour-card {
        height: 220px;
    }

    .what-we-offer {
        padding: 50px 0;
    }

    .what-we-offer h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-item {
        padding: 25px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .tour-header {
        height: 300px;
    }

    .itinerary {
        padding: 40px 0;
    }

    .day-item {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 40px 0 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo img {
        height: 40px;
    }

    .header-title span {
        font-size: 16px !important;
    }

    .social-links a {
        margin-left: 10px;
        font-size: 16px;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav ul li a {
        padding: 15px;
        font-size: 13px;
        letter-spacing: 1px;
        min-height: 50px;
    }

    .hero {
        height: 300px;
    }

    .hero h1,
    .about-hero h1,
    .tour-header h1 {
        font-size: 24px;
    }

    .hero p,
    .about-hero p {
        font-size: 14px;
    }

    .tour-card {
        height: 200px;
    }

    .tour-card h3 {
        font-size: 12px;
    }

    .what-we-offer h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 14px;
    }

    .day-item h3 {
        font-size: 16px;
    }

    .day-item p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
    }

    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
}
