body {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    background: linear-gradient(135deg, #f8f4f0, #faf7f2, #fcf9f4);
    min-height: 100vh;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.header {
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 115, 255, 0.8) 0%, rgba(0, 13, 255, 0.8) 100%), url('https://upload.wikimedia.org/wikipedia/commons/a/a8/ULURU.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(107, 115, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.kangaroo {
    position: absolute;
    font-size: 2em;
    z-index: 1;
    opacity: 0.6;
    animation: jump 4s infinite ease-in-out;
}

.kangaroo:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.kangaroo:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.kangaroo:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes jump {
    0%, 50%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-icon {
    font-size: 3em;
    margin-bottom: 10px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

h1 {
    margin: 0;
    font-size: 2em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1em;
    margin: 15px 0 0 0;
    opacity: 0.95;
    font-weight: 300;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-title {
    font-size: 1em;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-label {
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    body {
        padding: 5px;
    }
    
    .container {
        padding: 15px;
        border-radius: 10px;
    }
    
    .header {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .header-icon {
        font-size: 2.5em;
        margin-bottom: 8px;
    }
    
    h1 {
        font-size: 1.6em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .countdown-container {
        padding: 15px;
        margin-top: 15px;
    }
    
    .countdown-timer {
        gap: 10px;
        max-width: 320px;
    }
    
    .countdown-number {
        font-size: 1.6em;
    }
    
    .countdown-label {
        font-size: 0.7em;
    }
}

/* Summary Content Styles */
.summary-content {
    padding: 5px 0;
}

.summary-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--item-color);
}

.summary-item.flight {
    --item-color: #6B73FF;
    background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
}

.summary-item.city {
    --item-color: #FF6B35;
    background: linear-gradient(135deg, #fff5f0, #ffe5d9);
}

.summary-item.adventure {
    --item-color: #FFD700;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.summary-item.roadtrip {
    --item-color: #28a745;
    background: linear-gradient(135deg, #f0fff4, #e8f5e8);
}

.summary-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summary-icon {
    font-size: 2em;
    margin-right: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.summary-item:hover .summary-icon {
    transform: scale(1.1);
    opacity: 1;
}

.summary-details {
    flex: 1;
}

.summary-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.summary-date {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

/* Mobile adjustments for summary */
@media (max-width: 768px) {
    .summary-timeline {
        gap: 10px;
    }
    
    .summary-item {
        padding: 12px;
        border-radius: 8px;
    }
    
    .summary-icon {
        font-size: 1.5em;
        margin-right: 12px;
    }
    
    .summary-title {
        font-size: 1em;
        margin-bottom: 3px;
    }
    
    .summary-date {
        font-size: 0.8em;
    }
}

.section {
    margin: 20px 0;
    border: 2px solid #e6d5c8;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.section h2 {
    color: #8b7d7b;
    background: #f9f6f3;
    margin: 0;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
    border-bottom: 2px solid #e6d5c8;
    font-size: 1.1em;
}

.section h2:hover {
    background: #f5f0eb;
}

.section-content {
    padding: 0 15px 15px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.section.collapsed .section-content {
    max-height: 0;
    padding: 0 15px;
    opacity: 0;
}

.section.collapsed h2 {
    border-bottom: none;
}

.toggle-icon {
    margin-left: auto;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.section.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

/* Mobile adjustments for sections */
@media (max-width: 768px) {
    .section {
        margin: 15px 0;
        border-radius: 8px;
    }
    
    .section h2 {
        padding: 12px 10px;
        font-size: 1em;
    }
    
    .section-content {
        padding: 0 10px 10px 10px;
    }
    
    .section.collapsed .section-content {
        padding: 0 10px;
    }
    
    .toggle-icon {
        font-size: 1.1em;
    }
}

.emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.flight-section {
    background: #f9f6f3;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e6d5c8;
    margin: 15px 0;
}

.flight-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.flight-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #a8d5a8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.flight-header {
    color: #8b7d7b;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1em;
}

.flight-route {
    font-size: 1.1em;
    font-weight: bold;
    color: #7a9b7a;
    margin-bottom: 8px;
}

.flight-details {
    font-size: 0.8em;
    color: #666;
    line-height: 1.3;
}

.flight-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.flight-table th {
    background: #e6d5c8;
    color: #8b7d7b;
    padding: 8px 6px;
    text-align: left;
    font-weight: bold;
    font-size: 0.8em;
}

.flight-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75em;
}

.flight-table tr:hover {
    background: #faf8f6;
}

.travel-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.info-box {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e6d5c8;
    text-align: center;
}

.info-title {
    font-weight: bold;
    color: #8b7d7b;
    margin-bottom: 3px;
    font-size: 0.8em;
}

.info-value {
    color: #7a9b7a;
    font-size: 0.9em;
}

/* Mobile adjustments for flight section */
@media (max-width: 768px) {
    .flight-section {
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .flight-overview {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 10px 0;
    }
    
    .flight-card {
        padding: 10px;
        border-radius: 6px;
    }
    
    .flight-header {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .flight-route {
        font-size: 1em;
        margin-bottom: 6px;
    }
    
    .flight-details {
        font-size: 0.7em;
        line-height: 1.2;
    }
    
    .flight-table {
        margin: 8px 0;
        border-radius: 4px;
    }
    
    .flight-table th {
        padding: 6px 4px;
        font-size: 0.7em;
    }
    
    .flight-table td {
        padding: 6px 4px;
        font-size: 0.65em;
    }
    
    .travel-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 10px 0;
    }
    
    .info-box {
        padding: 8px;
        border-radius: 4px;
    }
    
    .info-title {
        font-size: 0.7em;
        margin-bottom: 2px;
    }
    
    .info-value {
        font-size: 0.8em;
    }
}

.calendar-section {
    background: #f9f6f3;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e6d5c8;
    margin: 15px 0;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 1px;
}

.calendar-header-day {
    background: #8b7d7b;
    color: white;
    padding: 8px 4px;
    text-align: center;
    font-weight: bold;
    font-size: 0.8em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin: 15px 0;
}

.calendar-day {
    background: white;
    min-height: 80px;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.calendar-day:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.calendar-day.expanded {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mobile calendar adjustments */
@media (max-width: 768px) {
    .calendar-section {
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .calendar-header-day {
        padding: 6px 2px;
        font-size: 0.7em;
    }
    
    .calendar-grid {
        margin: 10px 0;
        gap: 1px;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 4px;
        border-radius: 3px;
    }
    
    .calendar-day.expanded {
        transform: scale(1.01);
    }
    
    .calendar-day:hover {
        transform: scale(1.01);
    }
}

.day-number {
    font-size: 1em;
    font-weight: bold;
    color: #8b7d7b;
    margin-bottom: 3px;
}

.day-short-title {
    font-size: 0.7em;
    font-weight: bold;
    color: #7a9b7a;
    margin-bottom: 3px;
    line-height: 1.2;
}

.day-location {
    font-size: 0.6em;
    color: #999;
    background: #f5f5f5;
    padding: 1px 4px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 3px;
}

.day-details {
    display: none;
    font-size: 0.7em;
    color: #666;
    line-height: 1.3;
    margin-top: 8px;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.day-details.show {
    display: block;
}

.day-details ul {
    margin: 3px 0;
    padding-left: 12px;
}

.day-details li {
    margin: 2px 0;
}

/* Mobile adjustments for calendar content */
@media (max-width: 768px) {
    .day-number {
        font-size: 0.9em;
        margin-bottom: 2px;
    }
    
    .day-short-title {
        font-size: 0.6em;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    
    .day-location {
        font-size: 0.5em;
        padding: 1px 3px;
        border-radius: 4px;
        margin-bottom: 2px;
    }
    
    .day-details {
        font-size: 0.6em;
        line-height: 1.2;
        margin-top: 6px;
        padding-top: 6px;
    }
    
    .day-details ul {
        margin: 2px 0;
        padding-left: 10px;
    }
    
    .day-details li {
        margin: 1px 0;
    }
}

.city-section {
    border-left: 4px solid #c4e4c4;
    background: #f8fdf8;
}

.travel-day {
    border-left: 4px solid #d4b5a0;
    background: #fdfaf8;
}

.empty-day {
    background: #f8f8f8;
    border: 1px dashed #ddd;
}

.highlight-activity {
    background: #fff9e6;
    padding: 5px;
    border-radius: 4px;
    margin: 5px 0;
    font-size: 0.75em;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-day-number {
    background: #6B73FF;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.1em;
}

.modal-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #8b7d7b;
    flex: 1;
}

.modal-location {
    background: #f2f7f2;
    color: #7a9b7a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #a8d5a8;
}

.modal-details {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

.modal-details ul {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-details li {
    margin: 8px 0;
}

.modal-highlight {
    background: #fff9e6;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #e6c85e;
}

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

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        padding: 20px;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    .modal-day-number {
        padding: 6px 12px;
        font-size: 1em;
        margin-right: 10px;
    }
    
    .modal-title {
        font-size: 1.1em;
    }
    
    .modal-details {
        font-size: 0.9em;
    }
}

/* Accommodation Section Styles */
.accommodation-section {
    padding: 20px 0;
}

.accommodation-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.accommodation-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.accommodation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transition: height 0.3s ease;
}

.accommodation-box.melbourne {
    --accent-gradient: linear-gradient(90deg, #FF6B35, #FF8A5B);
    --hover-bg: linear-gradient(135deg, #fff5f0, #ffe5d9);
}

.accommodation-box.cairns {
    --accent-gradient: linear-gradient(90deg, #00D4AA, #2BDEBC);
    --hover-bg: linear-gradient(135deg, #f0fffc, #d9fff5);
}

.accommodation-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: rgba(107, 115, 255, 0.3);
}

.accommodation-box:hover::before {
    height: 8px;
}

.accommodation-box.melbourne:hover {
    background: var(--hover-bg);
}

.accommodation-box.cairns:hover {
    background: var(--hover-bg);
}

.hotel-icon {
    font-size: 3em;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.accommodation-box:hover .hotel-icon {
    transform: scale(1.1);
    opacity: 1;
}

.hotel-basic-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.accommodation-box:hover .hotel-basic-info h3 {
    color: #6B73FF;
}

.dates {
    margin: 0;
    color: #666;
    font-size: 1em;
    font-weight: 500;
}

/* Hotel Modal Styles */
.hotel-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.hotel-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0,0,0,0.1);
    border: none;
    font-size: 2em;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255,0,0,0.1);
    color: #ff4444;
    transform: scale(1.1);
}

/* Hotel Modal Content */
.hotel-modal-header {
    background: linear-gradient(135deg, var(--header-bg-start), var(--header-bg-end));
    padding: 40px 30px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.hotel-modal-header.melbourne {
    --header-bg-start: #fff5f0;
    --header-bg-end: #ffe5d9;
}

.hotel-modal-header.cairns {
    --header-bg-start: #f0fffc;
    --header-bg-end: #d9fff5;
}

.hotel-modal-header.outbound {
    --header-bg-start: #f0f4ff;
    --header-bg-end: #e8f0ff;
}

.hotel-modal-header.domestic {
    --header-bg-start: #fffbf0;
    --header-bg-end: #fff8e1;
}

.hotel-modal-header.return {
    --header-bg-start: #f0fff4;
    --header-bg-end: #e8f5e8;
}

.hotel-modal-icon {
    font-size: 4em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.flight-modal-image-container {
    width: 200px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.8);
}

.flight-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modal-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.hotel-modal-subtitle {
    font-size: 1.1em;
    color: #666;
    margin: 0 0 20px 0;
}

.hotel-rating-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stars-modal {
    font-size: 1.3em;
}

.category-modal {
    background: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-modal-body {
    padding: 30px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.modal-info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--card-accent);
}

.modal-info-card.dates {
    --card-accent: #6B73FF;
}

.modal-info-card.location {
    --card-accent: #00D4AA;
}

.modal-info-card.room {
    --card-accent: #FF6B35;
}

.modal-info-card.booking {
    --card-accent: #FFC107;
    background: linear-gradient(135deg, #fff8e1, #f3e5f5);
}

.modal-info-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.modal-info-value {
    color: #333;
    line-height: 1.5;
}

.modal-info-value strong {
    color: #222;
}

.modal-info-value small {
    color: #666;
    font-size: 0.9em;
}

.confirmation-code {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #dee2e6;
    margin-top: 10px;
    display: inline-block;
    color: #495057;
}

.cost-display {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    border: 2px solid #28a745;
}

.cost-amount {
    font-size: 1.8em;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.cost-note {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.booking-link {
    display: inline-block;
    background: linear-gradient(135deg, #6B73FF, #8A8FFF);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 115, 255, 0.3);
}

.booking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 115, 255, 0.4);
    text-decoration: none;
    color: white;
}

.address-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255,255,255,0.5);
    border: 2px solid transparent;
}

.address-link:hover {
    background: rgba(107, 115, 255, 0.1);
    border-color: rgba(107, 115, 255, 0.3);
    transform: translateX(4px);
    text-decoration: none;
    color: #333;
}

.maps-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.2em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.address-link:hover .maps-icon {
    opacity: 1;
    transform: scale(1.2);
}

/* Flight Modal Specific Styles */
.flight-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flight-segment {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #6B73FF;
}

.flight-segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.flight-number {
    background: linear-gradient(135deg, #6B73FF, #8A8FFF);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
}

.flight-date {
    color: #666;
    font-weight: 600;
    font-size: 0.9em;
}

.flight-route-detail {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.departure, .arrival {
    text-align: center;
}

.departure {
    text-align: left;
}

.arrival {
    text-align: right;
}

.time {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
    display: block;
}

.arrow {
    font-size: 1.5em;
    color: #6B73FF;
    font-weight: 700;
    text-align: center;
}

.flight-info {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    color: #666;
}

.layover {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.layover-info {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #856404;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.layover-icon {
    font-size: 1.2em;
}

/* Mobile adjustments for flight modals */
@media (max-width: 768px) {
    .flight-route-detail {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .departure, .arrival {
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .flight-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .layover-info {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

/* Flight Section Styles */
.flight-section {
    padding: 20px 0;
}

.flight-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.flight-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.flight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--flight-accent-gradient);
    transition: height 0.3s ease;
}

.flight-box.outbound {
    --flight-accent-gradient: linear-gradient(90deg, #6B73FF, #8A8FFF);
    --flight-hover-bg: linear-gradient(135deg, #f0f4ff, #e8f0ff);
}

.flight-box.domestic {
    --flight-accent-gradient: linear-gradient(90deg, #FFD700, #FFA500);
    --flight-hover-bg: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.flight-box.return {
    --flight-accent-gradient: linear-gradient(90deg, #28a745, #20c997);
    --flight-hover-bg: linear-gradient(135deg, #f0fff4, #e8f5e8);
}

.flight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: rgba(107, 115, 255, 0.3);
}

.flight-box:hover::before {
    height: 8px;
}

.flight-box.outbound:hover {
    background: var(--flight-hover-bg);
}

.flight-box.domestic:hover {
    background: var(--flight-hover-bg);
}

.flight-box.return:hover {
    background: var(--flight-hover-bg);
}

.flight-image-container {
    width: 120px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.flight-city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.flight-box:hover .flight-image-container {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.flight-box:hover .flight-city-image {
    transform: scale(1.1);
}

.flight-basic-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.flight-box:hover .flight-basic-info h3 {
    color: #6B73FF;
}

.route {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 1.1em;
    font-weight: 600;
}

.dates {
    margin: 0;
    color: #888;
    font-size: 0.95em;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flight-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .flight-box {
        padding: 25px 20px;
    }
    
    .flight-image-container {
        width: 100px;
        height: 75px;
    }
    
    .flight-basic-info h3 {
        font-size: 1.3em;
    }
    
    .accommodation-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .accommodation-box {
        padding: 25px 20px;
    }
    
    .hotel-icon {
        font-size: 2.5em;
    }
    
    .hotel-basic-info h3 {
        font-size: 1.3em;
    }
    
    .hotel-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }
    
    .hotel-modal-header {
        padding: 30px 20px 25px;
    }
    
    .hotel-modal-title {
        font-size: 1.8em;
    }
    
    .flight-modal-image-container {
        width: 150px;
        height: 90px;
    }
    
    .hotel-modal-body {
        padding: 20px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-section {
        margin-bottom: 25px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.8em;
    }
}

/* Car Rental Section Styles */
.car-rental-section {
    padding: 20px 0;
}

.car-rental-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.car-rental-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.car-rental-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--car-accent-gradient);
    transition: height 0.3s ease;
}

.car-rental-box.uluru {
    --car-accent-gradient: linear-gradient(90deg, #FFD700, #FFA500);
    --car-hover-bg: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.car-rental-box.camper {
    --car-accent-gradient: linear-gradient(90deg, #28a745, #20c997);
    --car-hover-bg: linear-gradient(135deg, #f0fff4, #e8f5e8);
}

.car-rental-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: rgba(107, 115, 255, 0.3);
}

.car-rental-box:hover::before {
    height: 8px;
}

.car-rental-box.uluru:hover {
    background: var(--car-hover-bg);
}

.car-rental-box.camper:hover {
    background: var(--car-hover-bg);
}

.car-icon {
    font-size: 3em;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.car-rental-box:hover .car-icon {
    transform: scale(1.1);
    opacity: 1;
}

.car-basic-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.car-rental-box:hover .car-basic-info h3 {
    color: #6B73FF;
}

.route {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 1em;
    font-weight: 600;
}

/* Mobile adjustments for car rental */
@media (max-width: 768px) {
    .car-rental-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .car-rental-box {
        padding: 25px 20px;
    }
    
    .car-icon {
        font-size: 2.5em;
    }
    
    .car-basic-info h3 {
        font-size: 1.3em;
    }
}