/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Update color scheme */
:root {
    --primary-color: #1B1464;
    --accent-color: #FF6B01;
    --secondary-color: #FFD700;
    --text-color: #333;
    --gray-color: #B0B0B0;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --nav-gradient: linear-gradient(to right, var(--primary-color), #2A2073);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    margin: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
}

.logo {
    height: 45px;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin-right: 2.5rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B01;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-text p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #FF6B01, #FFD700);
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 1, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 1, 0.4);
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 50%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.seasons-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.season-window {
    width: 400px;
    margin: 2rem;
}

.window-frame {
    background: #fff;
    border-radius: 15px 15px 0 0;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.window-pane {
    position: absolute;
    width: 100%;
    height: 100%;
}

.window-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.window-btn-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.window-btn {
    background: #FF6B01;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

.window-sill {
    height: 15px;
    background: #e0e0e0;
    border-radius: 0 0 15px 15px;
}

/* Remove all transitions and animations */
.season-window *,
.window-frame *,
.window-pane *,
.window-btn {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

/* Hide right pane completely */
.window-pane.right {
    display: none;
}

.season-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.season-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.price-tag {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-size: 0.9rem;
}

.season-content p {
    color: #666;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #c5a47e;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact-form textarea {
    height: 150px;
}

#contact-form button {
    padding: 1rem;
    background: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background: #b08f69;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #c5a47e;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.itinerary-day {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.itinerary-day h3 {
    color: #c5a47e;
    margin-bottom: 10px;
}

.itinerary-day ul {
    list-style: none;
    padding-left: 20px;
}

.itinerary-day ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.itinerary-day ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c5a47e;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 5rem 5%;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.virtual-tour::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transform: rotate(45deg);
    opacity: 0.05;
}

.virtual-tour h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .card-image img {
    transform: scale(1.1);
}

.view-360 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
    background: white;
}

.card-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Virtual Tour Modal */
.virtual-tour-modal .modal-content {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    padding: 0;
    background: #000;
}

.tour-viewer {
    flex: 1;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f5f5f5;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Image fade transition */
.main-image.fade-out {
    opacity: 0;
}

.main-image.fade-in {
    opacity: 1;
}

.tour-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

#tourContent {
    width: 100%;
    height: 100%;
    background: #000;
}

#panorama {
    width: 100%;
    height: 100%;
}

/* Loading Animation */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c5a47e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated Elements */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add these new styles */
/* Animated Icons */
.animated-icon {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Card Hover Effects */
.package-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.package-card:hover .package-image {
    transform: rotateX(10deg);
}

/* Section Dividers */
.section-divider {
    height: 4px;
    background: var(--gradient);
    margin: 2rem auto;
    width: 50px;
    border-radius: 2px;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 31, 84, 0.05) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(0, 31, 84, 0.05) 75%
    );
    background-size: 20px 20px;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Add logo-styled plane animation */
.floating-plane {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
}

.floating-plane i {
    color: var(--accent-color);
    font-size: 24px;
}

.plane-trail {
    position: absolute;
    height: 2px;
    background: linear-gradient(to left, 
        var(--secondary-color) 0%,
        transparent 100%
    );
    transform-origin: right;
    right: 0;
    top: 50%;
}

/* Add these new styles */
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.8;
    opacity: 0.9;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.package-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    line-height: 1.8;
}

.perfect-for {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.highlights li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Price styling */
.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Package card enhancements */
.package-card {
    border: 1px solid rgba(27, 20, 100, 0.1);
    transition: all 0.4s ease;
}

.package-card:hover {
    border-color: var(--accent-color);
}

.package-content {
    padding: 2rem;
}

/* Cultural elements */
.cultural-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Add these new styles for season animations */
.seasons-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Summer section animations and styling */
.season-column.summer-packages {
    transform: translateX(-100%);
    opacity: 0;
}

.season-column.summer-packages.animate-in {
    animation: slideFromLeft 1.2s forwards;
}

/* Summer background elements */
.summer-background {
    position: absolute;
    left: -50px;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.summer-background.animate-in {
    animation: fadeIn 1.5s forwards;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    filter: blur(5px);
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: floatCloud 20s infinite linear;
}

.cloud-2 {
    width: 150px;
    height: 45px;
    top: 40%;
    left: 5%;
    animation: floatCloud 25s infinite linear;
}

/* Winter section animations and styling */
.season-column.winter-packages {
    transform: translateX(100%);
    opacity: 0;
}

.season-column.winter-packages.animate-in {
    animation: slideFromRight 1.2s forwards;
}

/* Winter background elements */
.winter-background {
    position: absolute;
    right: -50px;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.winter-background.animate-in {
    animation: fadeIn 1.5s forwards;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    animation: fallSnow 10s infinite linear;
}

/* Animations */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes floatCloud {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(300%);
    }
}

@keyframes fallSnow {
    0% {
        transform: translateY(-50px) rotate(0deg);
    }
    100% {
        transform: translateY(500px) rotate(360deg);
    }
}

/* Departure Dates Styling */
.departure-dates {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 107, 1, 0.05);
    border-radius: 8px;
}

.departure-dates h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dates-list {
    list-style: none;
    padding: 0;
}

.dates-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.dates-list li:last-child {
    border-bottom: none;
}

.date {
    color: var(--text-color);
    font-weight: 500;
}

.seats {
    font-size: 0.8rem;
    color: var(--accent-color);
    background: rgba(255, 107, 1, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

/* Add hover effect */
.dates-list li:hover {
    background: rgba(255, 107, 1, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Season-specific styling */
.summer-packages .departure-dates {
    background: rgba(255, 107, 1, 0.05);
}

.winter-packages .departure-dates {
    background: rgba(27, 20, 100, 0.05);
}

.winter-packages .seats {
    background: rgba(27, 20, 100, 0.1);
    color: var(--primary-color);
}

.snowflake {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: snowfall-individual linear infinite;
}

@keyframes snowfall-individual {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(400px);
        opacity: 0;
    }
}

/* Add these styles for the itinerary section */
.itinerary-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.itinerary-container.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.itinerary {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    padding: 2rem;
    overflow-y: auto;
    display: none;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.itinerary.active {
    display: block;
    transform: translateY(0);
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-itinerary {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.itinerary-days {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.day {
    border-left: 3px solid #FF6B01;
    padding-left: 2rem;
    position: relative;
}

.day h3 {
    color: #333;
    margin-bottom: 1rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-slot {
    display: flex;
    gap: 1rem;
}

.time {
    color: #FF6B01;
    font-weight: 600;
    min-width: 100px;
}

/* Season-specific styles */
.summer-itinerary .day {
    border-left-color: #FF6B01;
}

.winter-itinerary .day {
    border-left-color: #00BCD4;
}

/* Upcoming Trips Section */
.upcoming-trips {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.trips-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trip-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trip-date {
    background: linear-gradient(135deg, #FF6B01, #FFD700);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.trip-date .month {
    font-size: 1.2rem;
    font-weight: 600;
}

.trip-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.trip-date .year {
    font-size: 1.1rem;
    opacity: 0.9;
}

.trip-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trip-details h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.trip-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.trip-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.trip-info i {
    color: #FF6B01;
    width: 20px;
    text-align: center;
}

.trip-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trip-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B01;
    display: block;
    margin-bottom: 0.3rem;
}

.trip-price .per-person {
    font-size: 0.9rem;
    color: #666;
}

.book-trip-btn {
    background: linear-gradient(135deg, #FF6B01, #FFD700);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-trip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 1, 0.3);
}

.trip-status {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #FF6B01;
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    text-align: center;
}

/* Status-specific colors */
.trip-status:contains("Early Bird") {
    background: #4CAF50;
}

.trip-status:contains("Filling Fast") {
    background: #FF9800;
}

.trip-status:contains("Advance Booking") {
    background: #2196F3;
}

/* Add responsive styles */
@media screen and (max-width: 768px) {
    .trips-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Trip status variations */
.trip-status.urgent {
    background: #dc3545;
    animation: pulse 2s infinite;
}

.trip-status.filling {
    background: #ff9800;
}

.trip-status.normal {
    background: #28a745;
}

@keyframes pulse {
    0% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.05);
    }
    100% {
        transform: rotate(45deg) scale(1);
    }
}

/* Spots indicator */
.trip-info .spots-left {
    color: #dc3545;
    font-weight: 600;
}

.trip-info .spots-plenty {
    color: #28a745;
}

/* Add hover effect for booking button */
.book-trip-btn {
    position: relative;
    overflow: hidden;
}

.book-trip-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.6s;
    transform-origin: center;
}

.book-trip-btn:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateX(100%);
}

/* Office Tour Styles */
.office-tour {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff, #f5f5f5);
}

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tour-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tour-viewer {
    flex: 1;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
    color: #333;
}

.tour-thumbnails {
    margin-top: 2rem;
    overflow: hidden;
}

.thumbnail-slider {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.tour-thumbnail {
    flex: 0 0 150px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.tour-thumbnail:hover {
    transform: translateY(-5px);
}

.tour-thumbnail.active {
    border: 3px solid #FF6B01;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading animation */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FF6B01;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .tour-viewer {
        height: 400px;
    }

    .tour-thumbnail {
        flex: 0 0 120px;
        height: 80px;
    }
}

/* 360 Tour Viewer Styles */
.tour-viewer {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 25px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: white;
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1.2rem;
    color: #333;
}

/* Pannellum Customization */
.pnlm-controls {
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-viewer:hover .pnlm-controls {
    opacity: 1;
}

.pnlm-load-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
}

.pnlm-compass {
    width: 40px !important;
    height: 40px !important;
    left: 20px !important;
    top: 20px !important;
}

/* Loading indicator */
.pnlm-load-box {
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 15px;
}

/* 360 Panorama Styles */
.panorama-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    position: relative;
}

.panorama-iframe {
    display: block;
    border: 0 none;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.11),
                0 2px 2px rgba(0,0,0,0.11),
                0 4px 4px rgba(0,0,0,0.11),
                0 6px 8px rgba(0,0,0,0.11),
                0 8px 16px rgba(0,0,0,0.11);
    transition: all 0.3s ease;
}

.panorama-container::before {
    content: '360° View';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panorama-container::before {
    content: '360° View \f1b2';
    font-family: 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .panorama-container {
        margin: 1rem;
    }
    
    .panorama-iframe {
        height: 300px;
    }
} 