/* ============================================
   Travel 2026 Landing Page Styles
   Austin Spanish Academy
   Cultural Immersion Trip to Mexico City
   VERSION: 2.0.0 - Bellas Artes Twilight Hero
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Hide WordPress-injected empty paragraphs BEFORE the landing page content */
.theme-content > p:first-child,
.theme-content > p:empty,
.theme-content > p:first-child br {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

/* Base Reset for Landing Page */
.travel2026-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force body to hide horizontal overflow on travel 2026 page */
body:has(.travel2026-landing) {
    overflow-x: hidden !important;
}

.travel2026-landing {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.travel2026-landing section {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.travel2026-landing h1,
.travel2026-landing h2,
.travel2026-landing h3,
.travel2026-landing h4 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

/* ============================================
   Hero Section with Background Image
   ============================================ */
.travel2026-hero {
    background-image: url('/wp-content/uploads/2026/01/bellas-artes-twilight-hero.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 100px !important;
    width: 100% !important;
    text-align: center;
}

.travel2026-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.35) 0%, rgba(45, 74, 111, 0.25) 100%);
    pointer-events: none;
}

.travel2026-hero-container {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
    width: 100% !important;
}

.travel2026-hero-content {
    color: #ffffff !important;
}

.travel2026-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.travel2026-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin: 0 auto !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Coming Soon Announcement Section
   ============================================ */
.travel2026-announcement {
    background: #ffffff !important;
    padding: 80px 20px !important;
    text-align: center;
}

.travel2026-announcement-container {
    max-width: 700px !important;
    margin: 0 auto !important;
}

.travel2026-announcement-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #00A0B0 0%, #008B9A 100%) !important;
    color: #ffffff !important;
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    box-shadow: 0 8px 30px rgba(0, 160, 176, 0.3) !important;
    animation: travel2026-pulse 2s ease-in-out infinite;
}

@keyframes travel2026-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(0, 160, 176, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 160, 176, 0.4); }
}

.travel2026-announcement h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    color: #1A365D !important;
    margin-bottom: 12px !important;
}

.travel2026-travel-dates {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #00A0B0 !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.5px;
}

.travel2026-announcement-text {
    font-size: 1.125rem !important;
    color: #4B5563 !important;
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
}

.travel2026-announcement-subtext {
    font-size: 1rem !important;
    color: #6B7280 !important;
    margin-bottom: 32px !important;
}

.travel2026-notify-form {
    display: flex !important;
    justify-content: center !important;
}

/* Buttons */
.travel2026-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #00A0B0 !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 160, 176, 0.3) !important;
}

.travel2026-btn-primary:hover {
    background: #008B9A !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 160, 176, 0.4) !important;
    color: #ffffff !important;
}

.travel2026-btn-primary svg {
    width: 20px !important;
    height: 20px !important;
}

.travel2026-btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    background: transparent !important;
    color: #1A365D !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border: 2px solid #1A365D !important;
    transition: all 0.3s ease !important;
}

.travel2026-btn-secondary:hover {
    background: #1A365D !important;
    color: #ffffff !important;
}

.travel2026-btn-white {
    display: inline-flex !important;
    align-items: center !important;
    background: #ffffff !important;
    color: #1A365D !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.travel2026-btn-white:hover {
    background: #F8FAFC !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    color: #1A365D !important;
}

/* ============================================
   Icon Strip Section with Images
   ============================================ */
.travel2026-icons {
    background: #F8FAFC !important;
    padding: 50px 20px !important;
}

.travel2026-icons-container {
    max-width: 900px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-around !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
}

.travel2026-icon-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.travel2026-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
    border: 3px solid #1A365D;
}

.travel2026-icon-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.travel2026-icon-item span {
    font-weight: 600 !important;
    color: #1A365D !important;
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Why Travel Section with Image Cards
   ============================================ */
.travel2026-why {
    background: #ffffff !important;
    padding: 80px 20px !important;
}

.travel2026-why-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

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

.travel2026-section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem) !important;
    color: #1A365D !important;
    margin-bottom: 12px !important;
}

.travel2026-section-header p {
    font-size: 1.1rem !important;
    color: #6B7280 !important;
}

.travel2026-section-header-light h2 {
    color: #ffffff !important;
}

.travel2026-section-header-light p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.travel2026-why-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
}

.travel2026-why-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.travel2026-why-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
}

.travel2026-why-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.travel2026-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel2026-why-card:hover .travel2026-why-image img {
    transform: scale(1.05);
}

.travel2026-why-card h3 {
    font-size: 1.25rem !important;
    color: #1A365D !important;
    margin: 20px 20px 12px !important;
}

.travel2026-why-card p {
    font-size: 0.95rem !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin: 0 20px 20px !important;
}

/* ============================================
   Past Trip Section
   ============================================ */
.travel2026-past {
    background: linear-gradient(135deg, #1A365D 0%, #2d4a6f 100%) !important;
    padding: 80px 20px !important;
}

.travel2026-past-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.travel2026-past-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: center !important;
}

.travel2026-past-text {
    color: #ffffff;
}

.travel2026-past-text h3 {
    font-size: 1.75rem !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
}

.travel2026-past-text > p {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px !important;
    line-height: 1.7 !important;
}

.travel2026-past-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
}

.travel2026-past-list li {
    padding: 8px 0 8px 28px !important;
    position: relative;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.travel2026-past-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00A0B0;
    font-weight: bold;
}

.travel2026-past-quote {
    font-style: italic !important;
    border-left: 3px solid #00A0B0;
    padding-left: 20px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.travel2026-past-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.travel2026-past-image {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Three-column Feature Section
   ============================================ */
.travel2026-features {
    background: #F8FAFC !important;
    padding: 60px 20px !important;
}

.travel2026-features-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.travel2026-feature-card {
    text-align: center;
}

.travel2026-feature-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.travel2026-feature-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

.travel2026-feature-card:hover .travel2026-feature-image img {
    transform: scale(1.05);
}

.travel2026-feature-card h4 {
    font-size: 1.1rem !important;
    color: #1A365D !important;
}

/* ============================================
   Experience Culture Section
   ============================================ */
.travel2026-culture {
    background-image: url('/wp-content/uploads/2026/01/zocalo-nightfall-panorama.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px !important;
}

.travel2026-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.85);
}

.travel2026-culture-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.travel2026-culture h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
}

.travel2026-culture p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   Adventure Awaits CTA Section
   ============================================ */
.travel2026-adventure {
    background-image: url('/wp-content/uploads/2026/01/catrina-day-of-dead-coyoacan.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px !important;
    text-align: center;
}

.travel2026-adventure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 176, 0.9) 0%, rgba(0, 139, 154, 0.85) 100%);
}

.travel2026-adventure-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
}

.travel2026-adventure h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
}

.travel2026-adventure p {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 32px !important;
}

/* ============================================
   Video Section
   ============================================ */
.travel2026-video {
    background: #ffffff !important;
    padding: 80px 20px !important;
}

.travel2026-video-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: center !important;
}

.travel2026-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel2026-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.travel2026-cta-image {
    padding-bottom: 0;
    height: auto;
}

.travel2026-cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.travel2026-video-content h3 {
    font-size: 1.5rem !important;
    color: #1A365D !important;
    margin-bottom: 20px !important;
}

.travel2026-video-content p {
    font-size: 1rem !important;
    color: #4B5563 !important;
    margin-bottom: 16px !important;
    line-height: 1.7 !important;
}

.travel2026-video-buttons {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
}

/* ============================================
   Registration Section
   ============================================ */
.travel2026-register {
    background: #ffffff !important;
    padding: 80px 20px !important;
    scroll-margin-top: 80px;
}

.travel2026-register-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.travel2026-register-subtitle {
    font-size: 1.1rem !important;
    color: #6B7280 !important;
}

.travel2026-register-info {
    text-align: center;
    margin-bottom: 50px !important;
    padding: 30px !important;
    background: #F8FAFC !important;
    border-radius: 16px !important;
}

.travel2026-register-badge {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #00A0B0 0%, #008B9A 100%) !important;
    color: #ffffff !important;
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    margin-bottom: 20px !important;
    box-shadow: 0 8px 30px rgba(0, 160, 176, 0.3) !important;
}

.travel2026-register-limit {
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.travel2026-register-label {
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px !important;
}

.travel2026-register-requirements {
    font-size: 1.25rem !important;
    color: #1A365D !important;
    margin-bottom: 12px !important;
}

.travel2026-register-waitlist {
    font-size: 0.95rem !important;
    color: #6B7280 !important;
    max-width: 500px;
    margin: 0 auto !important;
}

.travel2026-register-options {
    text-align: center;
}

.travel2026-register-options h3 {
    font-size: 1.5rem !important;
    color: #1A365D !important;
    margin-bottom: 30px !important;
}

.travel2026-register-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px !important;
}

.travel2026-register-table {
    width: 100%;
    border-collapse: collapse !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.travel2026-register-table th,
.travel2026-register-table td {
    padding: 16px 20px !important;
    text-align: left !important;
    border-bottom: 1px solid #E5E7EB !important;
}

.travel2026-register-table th {
    background: #1A365D !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.travel2026-register-table td {
    font-size: 0.95rem !important;
    color: #4B5563 !important;
    vertical-align: middle !important;
}

.travel2026-register-table tbody tr:last-child td {
    border-bottom: none !important;
}

.travel2026-register-table tbody tr:hover {
    background: #F8FAFC !important;
}

.travel2026-price {
    font-weight: 600 !important;
    color: #00A0B0 !important;
    white-space: nowrap;
}

.travel2026-btn-register {
    display: inline-block !important;
    background: #00A0B0 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.travel2026-btn-register:hover {
    background: #008B9A !important;
    color: #ffffff !important;
}

.travel2026-btn-disabled {
    background: #9CA3AF !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.travel2026-btn-disabled:hover {
    background: #9CA3AF !important;
    transform: none !important;
}

.travel2026-register-note {
    font-size: 0.9rem !important;
    color: #6B7280 !important;
    font-style: italic !important;
}

/* ============================================
   Cancellation Policy Section
   ============================================ */
.travel2026-cancellation {
    background: #F8FAFC !important;
    padding: 60px 20px !important;
}

.travel2026-cancellation-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.travel2026-cancellation h3 {
    font-size: 1.5rem !important;
    color: #1A365D !important;
    margin-bottom: 24px !important;
    text-align: center;
}

.travel2026-cancellation-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.travel2026-cancellation-list li {
    padding: 12px 0 12px 32px !important;
    position: relative;
    font-size: 0.95rem !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
    border-bottom: 1px solid #E5E7EB;
}

.travel2026-cancellation-list li:last-child {
    border-bottom: none !important;
}

.travel2026-cancellation-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #00A0B0;
    font-size: 1.25rem !important;
    font-weight: bold;
}

/* ============================================
   Legal Disclaimer Section
   ============================================ */
.travel2026-disclaimer {
    background: #ffffff !important;
    padding: 60px 20px !important;
}

.travel2026-disclaimer-container {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.travel2026-disclaimer h3 {
    font-size: 1.5rem !important;
    color: #1A365D !important;
    margin-bottom: 30px !important;
    text-align: center;
}

.travel2026-disclaimer-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.travel2026-disclaimer-item {
    display: flex !important;
    gap: 16px !important;
    background: #F8FAFC !important;
    padding: 24px !important;
    border-radius: 12px !important;
    border: 1px solid #E5E7EB;
}

.travel2026-disclaimer-icon {
    font-size: 1.5rem !important;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.travel2026-disclaimer-text strong {
    display: block !important;
    font-size: 1.1rem !important;
    color: #1A365D !important;
    margin-bottom: 8px !important;
}

.travel2026-disclaimer-text p {
    font-size: 0.95rem !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.travel2026-disclaimer-text a {
    color: #00A0B0 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.travel2026-disclaimer-text a:hover {
    text-decoration: underline !important;
}

/* ============================================
   Footer Section
   ============================================ */
.travel2026-footer {
    background: #1A365D !important;
    padding: 30px 20px !important;
    text-align: center;
}

.travel2026-footer-container {
    max-width: 700px !important;
    margin: 0 auto !important;
}

.travel2026-footer p {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.travel2026-footer a {
    color: #00A0B0 !important;
    text-decoration: none !important;
}

.travel2026-footer a:hover {
    text-decoration: underline !important;
}

/* ============================================
   Trip Highlights Section
   ============================================ */
.travel2026-highlights {
    background: #ffffff !important;
    padding: 80px 20px !important;
}

.travel2026-highlights-container {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.travel2026-highlights-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

.travel2026-highlight-card {
    background: #F8FAFC !important;
    border-radius: 16px !important;
    padding: 32px 28px !important;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease !important;
}

.travel2026-highlight-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.travel2026-highlight-emoji {
    font-size: 2.5rem !important;
    margin-bottom: 16px !important;
    line-height: 1 !important;
}

.travel2026-highlight-card h3 {
    font-size: 1.15rem !important;
    color: #1A365D !important;
    margin-bottom: 10px !important;
}

.travel2026-highlight-card p {
    font-size: 0.9rem !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ============================================
   What's NOT Included Section
   ============================================ */
.travel2026-not-included {
    background: #ffffff !important;
    padding: 60px 20px !important;
}

.travel2026-not-included-container {
    max-width: 600px !important;
    margin: 0 auto !important;
}

.travel2026-not-included-card {
    background: #F8FAFC !important;
    border-radius: 16px !important;
    padding: 32px 40px !important;
    border: 1px solid #E5E7EB;
}

.travel2026-not-included-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.travel2026-not-included-list li {
    padding: 10px 0 10px 28px !important;
    position: relative;
    font-size: 1rem !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
    border-bottom: 1px solid #E5E7EB;
}

.travel2026-not-included-list li:last-child {
    border-bottom: none !important;
}

.travel2026-not-included-list li::before {
    content: '\2022';
    position: absolute;
    left: 4px;
    color: #4B5563;
    font-weight: 700;
    font-size: 1.2rem !important;
    line-height: 1.4;
}

/* ============================================
   Itinerary at a Glance Section
   ============================================ */
.travel2026-itinerary {
    background: linear-gradient(135deg, #1A365D 0%, #2d4a6f 100%) !important;
    padding: 80px 20px !important;
}

.travel2026-itinerary-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.travel2026-itinerary-days {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.travel2026-day-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease !important;
}

.travel2026-day-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

.travel2026-day-badge {
    flex-shrink: 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #00A0B0 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    min-width: 90px;
    text-align: center;
}

.travel2026-day-label {
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.travel2026-day-date {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-top: 4px !important;
}

.travel2026-day-details h4 {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}

.travel2026-day-details p {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.travel2026-itinerary-note {
    text-align: center;
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    margin-top: 32px !important;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 900px) {
    .travel2026-features-container {
        grid-template-columns: 1fr !important;
        max-width: 400px;
    }

    .travel2026-video-container {
        grid-template-columns: 1fr !important;
    }

    .travel2026-video-embed {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .travel2026-hero {
        min-height: 50vh;
        padding: 100px 20px 80px !important;
    }

    .travel2026-announcement {
        padding: 60px 20px !important;
    }

    .travel2026-icons-container {
        gap: 25px !important;
    }

    .travel2026-icon-circle {
        width: 80px;
        height: 80px;
    }

    .travel2026-why,
    .travel2026-past,
    .travel2026-features,
    .travel2026-culture,
    .travel2026-adventure,
    .travel2026-video,
    .travel2026-register,
    .travel2026-cancellation,
    .travel2026-disclaimer,
    .travel2026-highlights,
    .travel2026-not-included,
    .travel2026-itinerary {
        padding: 60px 20px !important;
    }

    .travel2026-highlights-grid {
        grid-template-columns: 1fr !important;
    }

    .travel2026-day-card {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .travel2026-day-badge {
        flex-direction: row !important;
        gap: 8px !important;
        padding: 8px 16px !important;
        min-width: auto;
    }

    .travel2026-day-label {
        margin-top: 0 !important;
    }

    .travel2026-day-date {
        margin-top: 0 !important;
    }

    .travel2026-disclaimer-item {
        flex-direction: column !important;
        text-align: center;
    }

    .travel2026-disclaimer-icon {
        margin: 0 auto !important;
    }

    .travel2026-past-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .travel2026-past-visual {
        order: -1;
    }

    .travel2026-culture {
        background-attachment: scroll;
    }

    .travel2026-video-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .travel2026-btn-primary,
    .travel2026-btn-secondary {
        justify-content: center !important;
    }

    /* Registration table responsive */
    .travel2026-register-table thead {
        display: none !important;
    }

    .travel2026-register-table,
    .travel2026-register-table tbody,
    .travel2026-register-table tr,
    .travel2026-register-table td {
        display: block !important;
        width: 100% !important;
    }

    .travel2026-register-table tr {
        margin-bottom: 20px !important;
        border: 1px solid #E5E7EB !important;
        border-radius: 12px !important;
        overflow: hidden;
        background: #ffffff !important;
    }

    .travel2026-register-table td {
        padding: 12px 16px !important;
        text-align: center !important;
        border-bottom: 1px solid #E5E7EB !important;
    }

    .travel2026-register-table td:first-child {
        background: #1A365D !important;
        color: #ffffff !important;
        font-size: 1rem !important;
    }

    .travel2026-register-table td:first-child strong {
        color: #ffffff !important;
    }

    .travel2026-register-table td:last-child {
        border-bottom: none !important;
        padding: 16px !important;
    }

    .travel2026-btn-register {
        width: 100% !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .travel2026-icons-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .travel2026-why-grid {
        grid-template-columns: 1fr !important;
    }

    .travel2026-announcement-badge {
        width: 70px;
        height: 70px;
        font-size: 1.25rem !important;
    }

    .travel2026-icon-circle {
        width: 70px;
        height: 70px;
    }
}
