/* BASE.CSS - Core Styles (No Media Queries) */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Raleway", sans-serif;
    line-height: 1.6;
    color: #212529;
    overflow-x: hidden;
    background: #f8f5f2;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif, sans-serif;
    font-weight: 600;
}

.sub-heading {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.justified-text {
    text-align: justify;
}

/* CONTAINER */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* NAVIGATION */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    /*glass effect*/
    background: rgba(255, 255, 255, 0.88);   /* slight transparency on top for modern look */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);              /* optional: glass effect – remove if not wanted */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 1);  /* fully opaque on scroll */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1A374D;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);  /* subtle shadow before scroll */
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

/*.site-nav.scrolled .logo {
    color: #1A374D;
}*/

.logo .text-primary {
    color: #1A374D;
    font-family: "'DM Serif Text', serif";
}

.site-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.site-menu a {
    color: #1A374D;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);  /* crucial for readability over foliage */
}

.site-nav.scrolled .site-menu a {
    color: #1A374D;
    text-shadow: none;                 /* no need on solid background */
}


.site-menu a:hover {
    color: #007bff;
    transform: translateY(-1px);       /* subtle lift effect */
}

.site-menu .active a {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    font-weight: 600;
    text-shadow: none;
}

.site-nav.scrolled .site-menu a:hover,
.site-nav.scrolled .site-menu .active a {
    color: #1A374D;
}

/* Burger Menu */
.hamburger {
    display: none;
    width: 28px;
    height: 32px;
    cursor: pointer;
    position: relative;
}

.hamburger span,
.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1A374D;
    border-radius: 2px;
    transition: all 0.3s;
}

.site-nav.scrolled .hamburger span,
.site-nav.scrolled .hamburger:before,
.site-nav.scrolled .hamburger:after {
    background: #1A374D;
}
/*
.hamburger:before {
    top: 4px;
}

.hamburger span {
    top: 15px;
}

.hamburger:after {
    top: 26px;
} 

.hamburger.active span {
    opacity: 0;
}

.hamburger.active:before {
    top: 15px;
    transform: rotate(45deg);
}

.hamburger.active:after {
    top: 15px;
    transform: rotate(-45deg);
} 

.nav-menu {
    display: none;
}*/

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

.nav-toggle {
    display: none;   /* Hidden by default on large screens */
    position: relative;
    width: 28px;
    height: 32px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.site-nav.scrolled .nav-toggle .hamburger {
    background: #000;
}

/*hamburger animation*/
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

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

.btn-outline:hover {
    background: #007bff;
    color: #fff;
}

.btn-success {
    background: #6998AB;
    color: white;
}

.btn-success:hover {
    background: #5a8699;
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    background: #6998AB;
    padding: 112px 0px 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-wrap h1 {
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.typed-words {
    position: relative;
    display: inline-block;
}

.typed-words:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 7px;
    background: #B1D0E0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-card h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.hero-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.hero-highlight {
    font-weight: 600;
    color: #0d6efd;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.slides {
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 25px 50px rgba(26, 55, 77, 0.4);
}

.slides img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.slides img.active {
    opacity: 1;
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    color: #1A374D;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1A374D;
}

/* SERVICES/PACKAGES SECTION */
.packages_services {
    text-align: center;
    margin-bottom: 60px;
}

.packages_services p {
    max-width: 700px;
    margin: 20px auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.services-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    align-items: start;
    width: 100%;
}

.services-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #1A374D 0%, #406882 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    height: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-placeholder {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    padding: 40px;
}

.service-card {
    padding: 30px 25px;
    border-radius: 15px;
    background: #F5F5F5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #EFEFEF;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A374D;
    line-height: 1.4;
    min-height: 50px;
}

.service-card .tour-rate,
.service-card .tour-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.service-card .tour-rate span,
.service-card .tour-time span {
    font-weight: 600;
    color: #1A374D;
}

.service-card .btn {
    margin-top: auto;
    padding: 12px 30px;
    background: #1A374D;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card .btn:hover {
    background: #2c5575;
    transform: scale(1.05);
}

section.service-card:hover {
    transform: none;
    box-shadow: none;
    background: #1A374D;
}

.services-layout section {
    padding: 30px 25px;
    border-radius: 15px;
    background: #1A374D;
    color: white;
    height: 100%;
}

.services-layout section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.services-layout section p {
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.services-layout section p:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #4CAF50;
}

/* DESTINATION SECTION */
.destination-section {
    padding: 70px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.destination-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.media-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.media-thumb:hover {
    transform: translateY(-10px);
}

.media-thumb img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.media-thumb:hover img {
    transform: scale(1.1);
}

.media-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    z-index: 2;
}

.media-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
}

.media-text .location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
    color: #1A374D;
}

.slider-btn:hover {
    background: #1A374D;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #1A374D;
    width: 30px;
    border-radius: 6px;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    padding: 80px 0;
    margin-top: 3rem;
    background-color: #f8f9fa;
}

.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 40px 20px;
}

.testimonial.active {
    opacity: 1;
}

.name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
}

blockquote {
    border: none;
    margin: 0;
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    font-style: italic;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #6c757d;
}

.indicator:hover {
    background: #adb5bd;
}

/* CTA SECTION */
.cta-section {
    background: #1a374d;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.cta-section .btn-outline:hover {
    background: #fff;
    color: #1a374d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.site-footer {
    background: #1a374d;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 40px;
}

.widget {
    margin-bottom: 30px;
}

.widget h3,
.heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links a, 
.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover, 
.contact-info a:hover {
    color: #fff;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.link-highlight {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.link-highlight:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #1A374D;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background: #2c5575;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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


/* THANK YOU PAGE */
.thank-you-page {
    padding: 5rem 1rem;
    text-align: center;
}

.thank-you-section h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.thank-you-section .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin: 0.5rem 0;
}

.thank-you-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
