/* ===============================================
   CSS RESET & BASE STYLES
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ===============================================
   TYPOGRAPHY
   =============================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prata', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a365d;
    color: white;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #2d5a87, #1a365d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn--secondary {
    background: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.btn--secondary:hover {
    background: #1a365d;
    color: white;
}

/* ===============================================
   HEADER STYLES
   =============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    flex-shrink: 0;
}

.logo__image {
    height: 40px;
    width: auto;
}

.header__nav {
    display: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__contact,
.header__menu-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #1a365d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__contact:hover,
.header__menu-toggle:hover {
    background: rgba(26, 54, 93, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background: #1a365d;
    transition: all 0.3s ease;
}

.header__menu-toggle.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-toggle.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Styles */
.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    color: #1a365d;
    font-weight: 500;
    position: relative;
}

.nav__link:hover {
    color: #2d5a87;
}

.nav__caret {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav__item--has-dropdown:hover .nav__caret {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
    z-index: 1001;
}

.nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-content {
    padding: 1.5rem;
}

.nav__dropdown-grid {
    display: grid;
    gap: 1rem;
}

.nav__dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav__dropdown-item:hover {
    background: rgba(26, 54, 93, 0.05);
}

.nav__dropdown-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav__dropdown-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1a365d;
}

.nav__dropdown-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.nav__dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav__dropdown-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: #1a365d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav__dropdown-link:hover {
    background: rgba(26, 54, 93, 0.1);
    color: #2d5a87;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    min-height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu__logo {
    height: 35px;
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a365d;
    cursor: pointer;
}

.mobile-menu__nav {
    flex: 1;
    padding: 2rem 1rem;
    background-color: white;
}

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__link {
    display: block;
    padding: 1rem;
    color: #1a365d;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu__link:hover {
    background: rgba(26, 54, 93, 0.1);
    color: #2d5a87;
}

.mobile-menu__footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    background-color: white;
}

.mobile-menu__contact {
    margin-bottom: 1rem;
}

.mobile-menu__contact p {
    color: #666;
    margin: 0;
}

.mobile-menu__contact a {
    color: #1a365d;
    font-weight: 600;
}

.mobile-menu__social {
    display: none;
    gap: 1rem;
}

.mobile-menu__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu__social a:hover {
    background: #2d5a87;
    transform: translateY(-2px);
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.7) 0%,
        rgba(45, 90, 135, 0.5) 50%,
        rgba(26, 54, 93, 0.8) 100%
    );
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__text {
    text-align: center;
    color: white;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero__video-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero__booking {
    display: flex;
    justify-content: center;
}

/* Booking Widget */
.booking-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.booking-widget__header {
    margin-bottom: 1.5rem;
}

.booking-widget__header h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-widget__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-widget__field {
    display: flex;
    flex-direction: column;
}

.booking-widget__field label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-widget__field select {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1a365d;
    transition: all 0.3s ease;
}

.booking-widget__field select:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.booking-widget__submit {
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.booking-widget__submit:hover {
    background: linear-gradient(135deg, #2d5a87, #1a365d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

/* ===============================================
   ROUTES SECTION
   =============================================== */

.routes {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.routes__header {
    text-align: center;
    margin-bottom: 4rem;
}

.routes__title {
    color: #1a365d;
    margin-bottom: 1rem;
}

.routes__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.routes__grid {
    display: grid;
    gap: 3rem;
}

/* Route Cards */
.route-card {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.route-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.route-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-card__image img {
    transform: scale(1.05);
}

.route-card__content {
    padding: 2rem;
    position: relative;
}

.route-card__icon {
    position: absolute;
    top: 30px;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.route-card__title {
    color: #1a365d;
    margin-bottom: 1rem;
    margin-top: 5rem;
}

.route-card__destinations {
    margin-bottom: 1.5rem;
}

.route-card__destinations ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
}

.route-card__destinations li {
    background: rgba(26, 54, 93, 0.1);
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.route-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.route-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a365d;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1a365d;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.route-card__link:hover {
    background: #1a365d;
    color: white;
    transform: translateX(5px);
}

.route-card__link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.route-card__link:hover::after {
    transform: translateX(3px);
}

/* ===============================================
   FOOTER STYLES
   =============================================== */

.footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
}

.footer__pre {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__main {
    padding: 4rem 0;
}

.footer__bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__newsletter,
.footer__brochure,
.footer__promo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer__newsletter h3,
.footer__brochure h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer__newsletter p,
.footer__brochure p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #1a365d;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.newsletter-form__message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.newsletter-form__message--success {
    background: rgba(56, 161, 105, 0.15);
    color: #68d391;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.newsletter-form__message--error {
    background: rgba(229, 62, 62, 0.15);
    color: #feb2b2;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.promo-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.promo-badge__text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.promo-badge__amount {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Prata', serif;
}

.promo-badge__currency {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer__section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer__section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer__logo-image {
    height: 35px;
}

.footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal p {
    margin: 0;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablet Styles */
@media (min-width: 768px) {
    .header__nav {
        display: block;
    }
    
    .header__menu-toggle {
        display: none;
    }
    
    .hero__content {
        grid-template-columns: 1fr 400px;
        gap: 4rem;
    }
    
    .hero__text {
        text-align: left;
    }
    
    .hero__booking {
        justify-content: flex-start;
    }
    
    .routes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .route-card {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }
    
    .route-card--rtl {
        direction: rtl;
    }
    
    .route-card--rtl .route-card__content {
        direction: ltr;
    }
    
    .footer__pre {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .footer__newsletter,
    .footer__brochure,
    .footer__promo {
        text-align: left;
        margin-bottom: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .header__container {
        padding: 1.5rem 2rem;
    }
    
    .routes__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .route-card {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }
    
    .route-card__image {
        height: 100%;
    }
    
    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero__content {
        gap: 6rem;
    }
    
    .booking-widget {
        max-width: 450px;
    }
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero__title,
.hero__description,
.booking-widget {
    animation: fadeInUp 0.8s ease-out;
}

.hero__description {
    animation-delay: 0.2s;
}

.booking-widget {
    animation-delay: 0.4s;
}

.route-card {
    animation: fadeInUp 0.6s ease-out;
}

.route-card:nth-child(2) {
    animation-delay: 0.1s;
}

.route-card:nth-child(3) {
    animation-delay: 0.2s;
}

.route-card:nth-child(4) {
    animation-delay: 0.3s;
}

.route-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* ===============================================
   PAGE HEADER STYLES
   =============================================== */

.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.8) 0%,
        rgba(45, 90, 135, 0.6) 50%,
        rgba(26, 54, 93, 0.9) 100%
    );
    z-index: -1;
}

.page-header__content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: white;
}

.page-header__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================
   SECTION STYLES
   =============================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1a365d;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===============================================
   CARD COMPONENTS
   =============================================== */

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__content {
    padding: 2rem;
}

.card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===============================================
   GRID LAYOUTS
   =============================================== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ===============================================
   FORM STYLES
   =============================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1a365d;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-custom {
    background: #1a365d;
    border-color: #1a365d;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ===============================================
   CTA SECTION
   =============================================== */

.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS
   =============================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__image {
        display: block !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus {
    outline: 2px solid #1a365d;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero__overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn--primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn--secondary {
        background: #fff;
        color: #000;
        border-color: #000;
    }
}

/* ===============================================
   PAGE-SPECIFIC STYLES
   =============================================== */

/* About Us Page */
.our-story {
    padding: 3rem 0;
    background: #f8fafc;
}

.our-story__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

/* About Us Page - Section Spacing */
.our-values {
    padding: 3rem 0;
}

.our-team {
    padding: 3rem 0;
    background: #f8fafc;
}

.awards {
    padding: 3rem 0;
}

.our-story__text h2 {
    color: #1a365d;
    margin-bottom: 1rem;
    margin-top: 0;
}

.our-story__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member__image {
    height: 300px;
    overflow: hidden;
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member__info {
    padding: 2rem;
    text-align: center;
}

.team-member__role {
    color: #2d5a87;
    font-weight: 600;
    margin-bottom: 1rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.award {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.award:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(26, 54, 93, 0.1);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    font-family: 'Prata', serif;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card__link {
    color: #1a365d;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form-section {
    padding: 6rem 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.contact-form-features {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
}

.feature i {
    color: #1a365d;
    font-size: 1.2rem;
}

.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 54, 93, 0.05);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.office-hours {
    padding: 4rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hours-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-list {
    display: grid;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
}

.day {
    font-weight: 600;
    color: #1a365d;
}

.time {
    color: #666;
}

/* Destinations Page */
.destinations-section {
    padding: 6rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card__image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.7) 0%,
        rgba(45, 90, 135, 0.5) 100%
    );
}

.destination-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.destination-card__content {
    padding: 2rem;
}

.destination-card__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
}

.highlight i {
    color: #1a365d;
    font-size: 1.2rem;
}

.activities-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.activity-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-category__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.activity-category ul {
    list-style: none;
    padding: 0;
}

.activity-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.activity-category li:last-child {
    border-bottom: none;
}

/* Onboard Experience Page */
.service-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.service-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card--featured {
    border: 2px solid #1a365d;
}

.service-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card__header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.service-card__tagline {
    color: #666;
    font-style: italic;
}

.service-card__features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__features i {
    color: #1a365d;
    font-size: 1.2rem;
}

.service-card__price {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    font-family: 'Prata', serif;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.5rem;
}

.dining-section {
    padding: 6rem 0;
}

.dining-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.dining-text h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.dining-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dining-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
}

.dining-feature__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dining-feature__content h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.dining-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accommodations-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.accommodation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.accommodation-card__image {
    height: 250px;
    overflow: hidden;
}

.accommodation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-card__content {
    padding: 2rem;
}

.accommodation-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.accommodation-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.accommodation-features li:last-child {
    border-bottom: none;
}

.health-safety-section {
    padding: 6rem 0;
}

.health-safety-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.health-safety-text h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.safety-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
}

.safety-feature__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.safety-feature__content h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.health-safety-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenities-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Packages Page */
.package-filters {
    padding: 4rem 0;
    background: #f8fafc;
}

.filters-content h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1a365d;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.featured-packages {
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card--featured {
    border: 2px solid #1a365d;
}

.package-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card__image {
    height: 250px;
    overflow: hidden;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card__header {
    margin-bottom: 1rem;
}

.package-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.package-card__rating i {
    color: #ffd700;
}

.package-card__rating span {
    color: #666;
    font-size: 0.9rem;
}

.package-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-card__details {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.detail i {
    color: #1a365d;
    width: 20px;
}

.package-card__services {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-tag--silver {
    background: rgba(192, 192, 192, 0.2);
    color: #666;
}

.service-tag--gold {
    background: rgba(255, 215, 0, 0.2);
    color: #b8860b;
}

.package-card__pricing {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-from {
    color: #666;
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    font-family: 'Prata', serif;
}

.price-currency {
    font-size: 1.1rem;
    color: #666;
}

.price-per {
    color: #666;
    font-size: 0.9rem;
}

.price-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.package-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: auto;
}

.included-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.included-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.included-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.included-category__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.included-category ul {
    list-style: none;
    padding: 0;
}

.included-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.included-category li:last-child {
    border-bottom: none;
}

.booking-process {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step__content h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

/* Rail Routes Page */
.routes-overview {
    padding: 6rem 0;
}

.route-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.route-detail:last-child {
    border-bottom: none;
}

.route-detail__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.route-detail__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.route-detail__title h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.route-detail__tagline {
    color: #666;
    font-style: italic;
}

.route-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.route-info__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
}

.route-info__item i {
    color: #1a365d;
    width: 20px;
}

.route-detail__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.route-detail__highlights h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.route-detail__highlights ul {
    list-style: none;
    padding: 0;
}

.route-detail__highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.route-detail__highlights li:last-child {
    border-bottom: none;
}

.route-detail__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.route-detail__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.route-comparison {
    padding: 6rem 0;
    background: #f8fafc;
}

.comparison-table {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #1a365d;
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(26, 54, 93, 0.05);
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-meta {
    background: rgba(26, 54, 93, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-meta p {
    margin: 0;
    color: #666;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.contact-info {
    background: rgba(26, 54, 93, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #1a365d;
    font-weight: 600;
}

/* Responsive Design Updates */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-card__highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card__details {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-card__actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .route-detail {
        grid-template-columns: 1fr 1fr;
    }
    
    .route-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero__video-btn,
    .booking-widget,
    .mobile-menu {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
    }
    
    .hero__title,
    .hero__description {
        color: #000;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ===============================================
   NOTIFICATION POPUP
   =============================================== */

.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    max-width: 400px;
    min-width: 320px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup__content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
}

.notification-popup__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
}

.notification-popup__text {
    flex: 1;
    min-width: 0;
}

.notification-popup__text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.notification-popup__text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.notification-popup__close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.notification-popup__close:hover {
    color: #6b7280;
    background-color: #f3f4f6;
}

.notification-popup__close:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Animation for success state */
.notification-popup.show .notification-popup__icon {
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }
    
    .notification-popup__content {
        padding: 16px;
        gap: 12px;
    }
    
    .notification-popup__text h4 {
        font-size: 15px;
    }
    
    .notification-popup__text p {
        font-size: 13px;
    }
}

/* ===============================================
   FORM VALIDATION STYLES
   =============================================== */

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    display: block;
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================================
   BLOG STYLES
   =============================================== */

.blog-intro {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.04), rgba(45, 90, 135, 0.08));
}

.blog-listing {
    padding: 2rem 0 5rem;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(26, 54, 93, 0.18);
}

.blog-card__image {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
}

.blog-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__meta {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2d5a87;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-card__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.blog-card__excerpt {
    flex: 1;
    font-size: 1rem;
    color: #4a4f5a;
    line-height: 1.8;
}

.blog-card__button {
    align-self: flex-start;
    margin-top: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-card__button::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
}

.blog-card__button:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 24px rgba(26, 54, 93, 0.24);
}

.blog-article {
    padding: 5rem 0;
    background: #f7fbff;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    color: #1a365d;
    font-weight: 500;
}

.blog-article__meta i {
    color: #2d5a87;
    margin-right: 0.5rem;
}

.blog-article__content p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

.blog-article__content p:last-child {
    margin-bottom: 0;
}

.blog-cta {
    padding: 4rem 0;
}

.blog-cta__content {
    background: linear-gradient(135deg, #1a365d, #2d5a87);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(26, 54, 93, 0.32);
}

.blog-cta__content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.blog-cta__content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-backlink {
    padding: 0 0 4rem;
}

.blog-backlink__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

.blog-backlink__link i {
    color: #2d5a87;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card__content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-intro {
        padding: 3rem 0 1.5rem;
    }

    .blog-article {
        padding: 3.5rem 0;
    }

    .blog-article__meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-card__title {
        font-size: 1.5rem;
    }

    .blog-cta__content {
        padding: 3rem 2rem;
    }
}
