/* CSS Variables - 5 Color Palette */
:root {
    --primary-color: #093c99;
    --secondary-color: #ff6311;
    --accent-color: #2196a0;
    --success-color: #66e57b;
    --warning-color: #eb8b6f;
    
    /* Light/Dark Shades */
    --primary-light: #557cea;
    --primary-dark: #040a32;
    --secondary-light: #e27b1c;
    --secondary-dark: #7e1a02;
    --accent-light: #4dafb0;
    --accent-dark: #49819e;
    --success-light: #6be38a;
    --success-dark: #223930;
    --warning-light: #ff6474;
    --warning-dark: #e93d04;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --gray: #6a6a6c;
    --dark-gray: #232657;
    --black: #2a2f48;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --gradient-hero: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 20.00px;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1 {
    font-size: 2.51rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.06rem;
}

h2 {
    font-size: 2.08rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.89rem;
}

h3 {
    font-size: 1.52rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.81rem;
}

h4 {
    font-size: 1.37rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.73rem;
}

h5 {
    font-size: 1.14rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.64rem;
}

p {
    font-size: 1.08rem;
    margin-bottom: 1.06rem;
    color: var(--gray);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.52rem !important;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 55, 72, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-travel.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Sections */
section {
    position: relative;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Feature Cards */
.feature-card, .feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 9px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover, .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.feature-card i, .feature-item i {
    color: var(--primary-color);
    margin-bottom: 1.06rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 19px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 0.25rem 0;
    color: var(--gray);
}

.service-content ul li::before {
    content: "âœ“";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 1.52rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.07rem;
}

/* Price Cards */
.price-card {
    background: var(--white);
    border-radius: 17px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 17px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card.featured .price {
    color: var(--white);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-card.featured ul li {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* Team Members */
.team-member {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 17px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 1.06rem;
}

/* Reviews Slider */
.reviews-slider {
    padding: 2rem 0;
}

.review-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem;
}

.review-item p {
    font-size: 1.14rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.06rem;
}

.review-item h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Case Studies */
.case-study-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
}

.case-study-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-item h4 {
    color: var(--primary-color);
    margin: 1rem;
}

.case-study-item p {
    margin: 0 1rem 1rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.52rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-item:nth-child(even) {
    text-align: left;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-color: transparent var(--white) transparent transparent;
}

/* Career Items */
.career-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateY(-5px);
}

.career-item h4 {
    color: var(--primary-color);
}

.career-item span {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.91rem;
}

/* Info Items */
.info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-section {
    background: var(--light-gray);
}

.form-control {
    border: 2px solid #f5fbff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.08rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(19, 38, 55, 0.10);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 146, 206, 0.30);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1.06rem;
    font-size: 1.14rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

/* Blog Posts */
.blog-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    color: var(--primary-dark);
}

/* FAQ Accordion */
.accordion-button {
    background: var(--white);
    color: var(--dark-gray);
    border: none;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(48, 62, 105, 0.10);
}

.accordion-body {
  overflow-x: hidden;
    padding: 1.25rem;
    background: var(--light-gray);
}

/* Gallery */
.gallery-section img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.06rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.73rem;
}

.footer ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--white);
}

.footer hr {
    border-color: var(--gray);
    margin: 2rem 0 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light-gray);
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-icon {
    width: 30px;
    height: 30px;
}

/* Additional Items */
.destination-item, .package-item, .tip-item, .hotel-item, .experience-item,
.season-item, .activity-item, .culture-item, .transport-item, .photo-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.destination-item:hover, .package-item:hover, .tip-item:hover, .hotel-item:hover, .experience-item:hover,
.season-item:hover, .activity-item:hover, .culture-item:hover, .transport-item:hover, .photo-item:hover {
    transform: translateY(-5px);
}

.destination-item img, .package-item img, .hotel-item img, .experience-item img,
.season-item img, .activity-item img, .culture-item img, .transport-item img, .photo-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.tip-item i {
    color: var(--accent-color);
    margin-bottom: 1.06rem;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; } 