/* Custom styles for TravelWizzard */

/* Authentication Navigation Styles */
.auth-buttons {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.auth-link {
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.auth-link:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* User Avatar Styles */
.user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a3066;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    text-shadow: none;
    margin-right: 4px;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

/* Beach-themed Dropdown */
.beach-dropdown {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #4FC3F7;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 8px;
    min-width: 180px;
}

.beach-dropdown .dropdown-item {
    color: #1a3066;
    padding: 10px 16px;
    font-weight: 500;
    border-radius: 8px;
    margin: 4px 8px;
    transition: all 0.3s ease;
    max-width: calc(100% - 16px);
    box-sizing: border-box;
}

.beach-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    color: white;
    transform: translateX(2px);
    max-width: calc(100% - 16px);
    box-sizing: border-box;
}

.beach-dropdown .dropdown-item:hover,
.beach-dropdown .dropdown-item button:hover,
.beach-dropdown .dropdown-item form:hover,
.beach-dropdown .dropdown-item form:hover button,
.beach-dropdown .dropdown-item:hover button {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6) !important;
    color: white !important;
    transform: translateX(2px) !important;
    max-width: calc(100% - 16px) !important;
    box-sizing: border-box !important;
}

.beach-dropdown .dropdown-divider {
    border-color: #4FC3F7;
    opacity: 0.3;
    margin: 8px 16px;
}

.beach-dropdown .dropdown-item i {
    width: 16px;
    text-align: center;
}

.auth-link i {
    margin-right: 5px;
}

/* Beach-themed Modal Styles - Matching Contact Form */
.magical-modal {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    animation: modalSlideIn 0.4s ease-out;
    position: relative;
}

.magical-modal::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: gentleWave 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gentleWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.1;
    }
}

.modal-header.magical-header {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
    color: var(--deep-ocean);
    border: none;
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.modal-header.magical-header .btn-close {
    color: var(--deep-ocean) !important;
    background-color: transparent !important;
    border: 2px solid var(--deep-ocean) !important;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal-header.magical-header .btn-close:hover {
    opacity: 1;
    background-color: var(--deep-ocean) !important;
    color: white !important;
    transform: scale(1.1);
}

/* Apply the same close button styling to all modal headers */
.modal-header .btn-close {
    color: var(--deep-ocean) !important;
    background-color: transparent !important;
    border: 2px solid var(--deep-ocean) !important;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal-header .btn-close:hover {
    opacity: 1;
    background-color: var(--deep-ocean) !important;
    color: white !important;
    transform: scale(1.1);
}

.magical-header::after {
    content: "🌊";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatingIcon 6s ease-in-out infinite;
}

.magical-header .modal-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--deep-ocean);
    animation: titleFadeIn 0.6s ease-out 0.2s both;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.magical-body {
    padding: 1rem 2rem 2rem;
    background: white;
    animation: bodySlideUp 0.5s ease-out 0.3s both;
}

@keyframes bodySlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.magical-footer {
    background: white;
    border: none;
    padding: 1rem 2rem 2rem;
    border-top: none;
}

.magical-label {
    color: var(--deep-ocean);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.magical-input {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--sky-blue);
    color: white;
    width: 100%;
    position: relative;
    transform: translateY(0);
}

.magical-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.magical-input:focus {
    background: var(--sky-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.3), 0 8px 25px rgba(79, 195, 247, 0.2);
    color: white;
    transform: translateY(-2px);
}

.magical-input:focus::placeholder {
    transform: translateY(-2px);
    opacity: 0.6;
}

.magical-btn {
    background: var(--deep-ocean);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.magical-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.magical-btn:hover::before {
    width: 300px;
    height: 300px;
}

.magical-btn:hover {
    background: #2c5282;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: white;
    animation: buttonWaveHover 1.5s ease-in-out infinite;
}

.magical-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Form submission animation */
.form-submitting .magical-btn {
    animation: submitPulse 0.6s ease-in-out;
}

@keyframes submitPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Success bounce animation */
.form-success .magical-btn {
    animation: successBounce 0.8s ease-out;
}

@keyframes successBounce {
    0% { transform: scale(1); }
    20% { transform: scale(1.15) rotate(5deg); }
    40% { transform: scale(0.95) rotate(-3deg); }
    60% { transform: scale(1.05) rotate(2deg); }
    80% { transform: scale(0.98) rotate(-1deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Beach-themed modal enhancements */
.modal.show .magical-modal {
    position: relative;
}

.modal.show .magical-modal::after {
    content: "🐚";
    position: absolute;
    top: 10px;
    right: 50px;
    font-size: 1.2rem;
    color: rgba(79, 195, 247, 0.6);
    animation: floatingSeashell 8s linear infinite;
    pointer-events: none;
    z-index: 1000;
}

/* Sand particles container for form interactions */
.sand-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1001;
}

.sand-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 218, 121, 0.8);
    border-radius: 50%;
    animation: sandParticle 2s ease-out forwards;
}

/* Wave ripple on button click */
.magical-btn.clicked {
    animation: submitPulse 0.6s ease-in-out;
}

/* Input wave effect animation */
@keyframes inputWaveEffect {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.input-wave {
    border-radius: 8px;
    z-index: 1;
}

.magical-btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--sky-blue);
    border-radius: 25px;
    padding: 0.9rem 2rem;
    font-weight: 600;
    color: var(--sky-blue);
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.2);
}

.magical-btn-outline:hover {
    background: linear-gradient(135deg, var(--sky-blue), var(--ocean-teal));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.4);
    border-color: transparent;
}

.magical-btn-secondary {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.magical-btn-secondary:hover {
    transform: translateY(-2px);
}

.magical-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.magical-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--sky-blue), var(--ocean-teal));
    transition: width 0.3s ease;
}

.magical-link:hover {
    color: var(--ocean-teal);
    text-decoration: none;
}

.magical-link:hover::after {
    width: 100%;
}

.magical-icon {
    color: var(--sky-blue);
    animation: gentle-float 3s ease-in-out infinite;
}

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

@keyframes floatingIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-5px) rotate(5deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-8px) rotate(0deg); 
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-3px) rotate(-3deg); 
        opacity: 0.1;
    }
}

/* Beach-themed seashell animation */
@keyframes floatingSeashell {
    0% {
        transform: translateX(-100px) translateY(20px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

/* Sand particle effect */
@keyframes sandParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50px) scale(0);
        opacity: 0;
    }
}

/* Wave ripple effect */
@keyframes waveRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Beach button hover with wave effect */
@keyframes buttonWaveHover {
    0% {
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        transform: translateY(0);
    }
}

/* Beach particle effects */
.beach-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.beach-particle {
    position: absolute;
    background: rgba(79, 195, 247, 0.6);
    border-radius: 50%;
    animation: floatUp 4s linear infinite;
}

.beach-particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 3px; height: 3px; }
.beach-particle:nth-child(2) { left: 20%; animation-delay: 1s; width: 2px; height: 2px; }
.beach-particle:nth-child(3) { left: 30%; animation-delay: 2s; width: 4px; height: 4px; }
.beach-particle:nth-child(4) { left: 70%; animation-delay: 0.5s; width: 2px; height: 2px; }
.beach-particle:nth-child(5) { left: 80%; animation-delay: 1.5s; width: 3px; height: 3px; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.magical-title {
    color: var(--deep-ocean);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.magical-text {
    color: #6c757d;
    line-height: 1.5;
}

.magical-hint {
    color: var(--ocean-teal);
    font-size: 0.875rem;
    font-style: italic;
}

.magical-warning {
    color: var(--sunset-orange);
    font-style: italic;
}

.forgot-password-link {
    color: var(--ocean-teal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--deep-ocean);
    text-decoration: underline;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(5deg); }
    50% { transform: scale(1.1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(-5deg); }
}

/* Color variables */
:root {
    --sky-blue: #4FC3F7;
    --coral: #FF8A65;
    --sunny-yellow: #FFD54F;
    --ocean-teal: #4DB6AC;
    --sunset-orange: #FF7043;
    --white-sand: #FFFFFF;
    --light-cloud: #F5F5F5;
    --deep-ocean: #01579B;
}

/* General styling */
body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--deep-ocean);
    background: linear-gradient(135deg, #87CEEB, #4FC3F7);
    position: relative;
    overflow-x: hidden;
}

.beach-background {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1000 1000"><path d="M0,800 C200,750 400,850 600,800 C800,750 1000,850 1200,800 L1200,1000 L0,1000 Z" fill="%23FFD54F" /></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1000 1000"><path d="M0,900 C200,800 400,900 600,800 C800,850 1000,800 1200,850 L1200,1000 L0,1000 Z" fill="%23FF8A65" opacity="0.7" /></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="80" height="80"><circle cx="100" cy="100" r="80" fill="%23FFD54F" /><circle cx="100" cy="100" r="60" fill="%23FFEB3B" /></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="60" height="60"><path d="M 30,50 Q 50,20 70,50 T 110,50" stroke="%23FFFFFF" stroke-width="5" fill="none" /></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><path d="M10,25 L50,25 L30,55 z" fill="%234FC3F7" /></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="50" height="50"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFFFFF" stroke-width="2" stroke-dasharray="5,5" /></svg>');
    background-position: 
        bottom,
        bottom,
        top 50px right 5%,
        top 120px left 10%,
        top 200px right 15%,
        top 280px left 20%;
    background-repeat: no-repeat;
    background-size: 
        100%,
        100%,
        80px,
        60px,
        60px,
        50px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Add decorative elements that float around */
.beach-background::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 8%;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,20 L60,40 L80,50 L60,60 L50,80 L40,60 L20,50 L40,40 Z" fill="%23FFD54F" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
    animation: floatAnimation 8s ease-in-out infinite;
}

.beach-background::after {
    content: "";
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 Q90,20 90,30 L90,70 Q90,80 80,80 L20,80 Q10,80 10,70 L10,30 Q10,20 20,20 Z" fill="%234DB6AC" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    animation: floatAnimation 10s ease-in-out infinite reverse;
}

.container {
    max-width: 1000px;
}

/* Main content area for flex layout */
.main-content {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, .tagline {
    font-family: 'Fredoka', sans-serif;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-sand);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.tagline {
    font-size: 1.3rem;
    color: var(--white-sand);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Header Section */
.header-section {
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    position: relative;
}

.travel-icons {
    margin: 1rem 0;
}

.travel-icon {
    font-size: 1.5rem;
    margin: 0 0.3rem;
    display: inline-block;
    animation: bounce 2s infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.travel-icon:nth-child(1) { --i: 0; }
.travel-icon:nth-child(2) { --i: 1; }
.travel-icon:nth-child(3) { --i: 2; }
.travel-icon:nth-child(4) { --i: 3; }
.travel-icon:nth-child(5) { --i: 4; }

.magic-wand {
    color: var(--sunny-yellow);
    display: inline-block;
    transition: transform 0.3s ease;
    animation: sparkle 3s infinite;
}

.magic-wand:hover {
    transform: rotate(20deg) scale(1.2);
}

/* Upload Section */
.upload-section {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-file-upload {
    border: 3px dashed var(--sky-blue);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(79, 195, 247, 0.1);
}

.custom-file-upload:hover, .custom-file-upload.highlight {
    border-color: var(--coral);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.upload-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
    transition: transform 0.3s ease;
}

.custom-file-upload:hover .upload-icon {
    transform: scale(1.1);
    color: var(--coral);
}

.upload-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-ocean);
}

/* File Preview Section */
.file-preview {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.selected-files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sky-blue);
}

.file-count-badge {
    background-color: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-clear-files {
    background: none;
    border: none;
    color: var(--deep-ocean);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-clear-files:hover {
    color: var(--sunset-orange);
}

.file-list {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.file-list::-webkit-scrollbar {
    width: 5px;
}

.file-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.file-list::-webkit-scrollbar-thumb {
    background: var(--sky-blue);
    border-radius: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.file-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

.file-icon-container {
    position: relative;
    margin-right: 0.8rem;
}

.file-item i {
    color: var(--ocean-teal);
}

.file-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--sunset-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combined-files-notice {
    background-color: rgba(79, 195, 247, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--deep-ocean);
    display: flex;
    align-items: center;
    border-left: 3px solid var(--ocean-teal);
}

.file-details {
    flex: 1;
    margin-right: 24px; /* Make room for the remove button */
}

.file-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.file-item-size {
    color: var(--deep-ocean);
    opacity: 0.7;
    font-size: 0.8rem;
}

.remove-file-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.remove-file-btn:hover {
    opacity: 1;
    background-color: rgba(220, 53, 69, 0.1);
}

.processed-files-info {
    background-color: rgba(79, 195, 247, 0.1);
    border-left: 3px solid var(--sky-blue);
    padding: 0.6rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.verify-btn {
    background-color: var(--ocean-teal);
    color: white;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.verify-btn:hover {
    background-color: var(--deep-ocean);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(77, 182, 172, 0.4);
}

.generate-btn {
    background-color: var(--coral);
    color: white;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.generate-btn:hover {
    background-color: var(--sunset-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 138, 101, 0.4);
}

.generate-btn:disabled {
    background-color: #ccc;
    transform: none;
    box-shadow: none;
}

.spinner-border {
    display: none;
}

/* Show the spinner when it doesn't have the d-none class */
.spinner-border:not(.d-none) {
    display: inline-block;
}

/* Results Section */
.results-section {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: none;
    animation: fadeInUp 0.8s ease-in-out;
    border-top: 5px solid var(--sunset-orange);
}

.results-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.header-icon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--sunset-orange);
}

.results-header h2 {
    color: var(--deep-ocean);
    margin-bottom: 0;
    font-weight: 600;
}

.trip-headline {
    text-align: center;
    margin: 10px 0 30px 0;
    position: relative;
}

.trip-headline h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-ocean);
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, var(--sunny-yellow) 0%, var(--sunset-orange) 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.3;
    transform: rotate(-1deg);
    position: relative;
    z-index: 1;
}

.trip-headline h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    z-index: -1;
}

.trip-headline::after {
    content: "✈️";
    position: absolute;
    right: 10%; 
    top: -10px;
    font-size: 2rem;
    transform: rotate(15deg);
}

/* Content styling */
.summary-card {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--sunset-orange) 0%, var(--sky-blue) 100%);
}

.card-body {
    padding: 20px;
}

.summary-content {
    line-height: 1.6;
    color: var(--deep-ocean);
    padding: 0.5rem;
}

.summary-actions {
    margin-top: 1.5rem;
}

.action-btn {
    background-color: var(--deep-ocean);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.action-btn:hover {
    background-color: var(--ocean-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Business Class Button Styling */
.business-class-btn {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5722 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transform: scale(1.05);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.business-class-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.business-class-btn:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--coral) 100%);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.summary-content h2 {
    color: var(--coral);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--coral);
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.summary-content h3 {
    color: var(--sunset-orange);
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Weather icons style */
.summary-content em {
    font-style: normal;
    font-size: 1rem; /* Further reduced size */
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    text-shadow: none;
}

/* Fix for headings with weather icons */
.summary-content h1, 
.summary-content h2, 
.summary-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

/* No hover animation */
.summary-content em:hover {
    /* No transform effect */
}

.summary-content h4 {
    color: var(--ocean-teal);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.summary-content ul, .summary-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.summary-content li {
    margin-bottom: 0.8rem;
}

/* Fix for packing list bullet points */
.packing-list {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin-bottom: 15px !important;
}

.packing-list li {
    display: list-item !important;
    margin-bottom: 4px !important;
}

.summary-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.summary-content strong {
    color: var(--deep-ocean);
    font-weight: 600;
}

/* Image analysis styles */
.image-analysis {
    background-color: rgba(255, 248, 225, 0.8);
    border-radius: 10px;
    padding: 15px 20px;
    border-left: 4px solid var(--sunny-yellow);
    margin: 20px 0;
    position: relative;
}

.image-analysis h4 {
    color: var(--deep-ocean);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.image-analysis h4::before {
    content: "🖼️";
    margin-right: 10px;
    font-size: 1.3rem;
}

.image-analysis p {
    margin-bottom: 0;
}

.summary-content hr {
    border-color: var(--sky-blue);
    opacity: 0.3;
    margin: 1.5rem 0;
}

.summary-content blockquote {
    border-left: 4px solid var(--coral);
    padding-left: 1rem;
    margin-left: 0;
    background-color: rgba(255, 138, 101, 0.1);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1rem 1rem 1.5rem;
    font-style: italic;
}

/* Upgrade Modal Styling */
.upgrade-tooltip h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--deep-ocean);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
}

.tooltip-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.tooltip-features li {
    font-size: 0.8rem;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.tooltip-features li i {
    color: #28a745;
    margin-right: 5px;
}

.tooltip {
    opacity: 1 !important;
}

.tooltip-inner {
    max-width: 300px;
    text-align: left;
    padding: 15px;
    background-color: white;
    color: var(--deep-ocean);
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
    animation: tooltip-pop 0.3s ease-out;
}

@keyframes tooltip-pop {
    0% { transform: scale(0.9); opacity: 0; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.upgrade-tooltip {
    position: relative;
}

.upgrade-tooltip::before {
    content: 'Starting at $1.99';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--coral);
    color: white;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--coral) 0%, var(--deep-ocean) 100%);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
    background-color: rgba(245, 245, 245, 0.8);
}

.modal-decorations {
    position: relative;
    height: 60px;
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sky-blue-light) 100%);
    overflow: hidden;
}

.modal-palm-left, .modal-palm-right {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.modal-palm-left {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 C45,25 40,40 45,60 C50,80 55,90 50,95 C45,100 30,95 25,85 C20,75 15,60 10,45 C5,30 10,15 20,10 C30,5 40,10 50,10 Z' fill='%230f7d4c'/%3E%3C/svg%3E");
    transform: rotate(-10deg);
}

.modal-palm-right {
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 C55,25 60,40 55,60 C50,80 45,90 50,95 C55,100 70,95 75,85 C80,75 85,60 90,45 C95,30 90,15 80,10 C70,5 60,10 50,10 Z' fill='%230f7d4c'/%3E%3C/svg%3E");
    transform: rotate(10deg);
}

.modal-sun {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--sunny-yellow);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
    animation: sun-pulse 2s infinite alternate;
}

@keyframes sun-pulse {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.2); }
}

.modal-intro {
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.modal-intro h4 {
    color: var(--deep-ocean);
    font-weight: 600;
}

.upgrade-option {
    background-color: white;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.upgrade-option:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.upgrade-option.premium {
    border: 2px solid var(--coral);
    background-color: rgba(255, 255, 255, 0.95);
}

.upgrade-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sky-blue), var(--coral));
    opacity: 0.7;
}

.upgrade-option.premium::after {
    background: linear-gradient(90deg, var(--coral), var(--sunny-yellow));
    height: 7px;
    opacity: 1;
}

.most-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--coral);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.3);
    z-index: 2;
    animation: bounce 2s infinite;
}

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

.pricing-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--deep-ocean);
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.pricing-tag.premium-tag {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5722 100%);
    padding: 8px 15px;
}

.pricing-tag small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.upgrade-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.upgrade-header i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--deep-ocean);
}

.upgrade-header h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.upgrade-description {
    color: #666;
    margin-bottom: 15px;
}

.upgrade-features ul {
    list-style: none;
    padding-left: 0;
}

.upgrade-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.upgrade-features li i {
    color: #28a745;
    margin-right: 8px;
}

.upgrade-btn {
    background-color: var(--deep-ocean);
    color: white;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.upgrade-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: -1;
    animation: btn-shimmer 2s infinite;
}

.upgrade-btn:hover {
    background-color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 145, 0.3);
}

.upgrade-btn-premium {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5722 100%);
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.upgrade-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: -1;
    animation: btn-shimmer 2s infinite;
}

.upgrade-btn-premium:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--coral) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* Premium badge styling */
.premium-badge {
    background: linear-gradient(135deg, #B38728 0%, #FCF6BA 50%, #B38728 100%);
    color: var(--deep-ocean);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(179, 135, 40, 0.3);
    animation: badge-glow 2s infinite alternate;
}

.premium-badge i {
    margin-right: 4px;
    color: var(--deep-ocean);
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 5px rgba(179, 135, 40, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(179, 135, 40, 0.8);
    }
}

/* Premium sections styling */
.premium-section {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(179, 135, 40, 0.05);
    border-left: 4px solid #B38728;
}

.premium-section h2 {
    color: var(--deep-ocean);
    border-bottom: 2px solid rgba(179, 135, 40, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.premium-section h2 i {
    color: #B38728;
}

/* Map placeholder styling */
.map-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.map-icon {
    font-size: 3rem;
    color: #B38728;
    margin-bottom: 10px;
    display: block;
}

/* Safety section styling */
.safety-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.safety-item {
    flex: 1 1 30%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.safety-item h4 {
    color: var(--deep-ocean);
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(179, 135, 40, 0.2);
    padding-bottom: 5px;
}

/* Cultural section styling */
.cultural-container {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.cultural-container ul {
    padding-left: 20px;
}

.cultural-container li {
    margin-bottom: 8px;
}

.error-message {
    color: var(--bs-danger);
    margin: 1rem 0;
    display: none;
    padding: 0.8rem;
    border-radius: 10px;
    background-color: rgba(220, 53, 69, 0.1);
    font-weight: 500;
}

/* Footer styles */
footer {
    color: var(--white-sand);
    padding: 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    background: transparent;
}

/* Ensure footer text and elements are visible on beach background */
footer p,
footer .small,
footer .text-muted {
    color: var(--white-sand) !important;
}

footer a,
footer a:link,
footer a:visited,
footer a:hover {
    color: white !important;
    text-decoration: none !important;
}

.footer-icons {
    margin-bottom: 0.8rem;
}

.footer-icons i {
    font-size: 1.3rem;
    margin: 0 0.5rem;
    color: var(--white-sand);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icons i:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Legal Page Styles */
.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.legal-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--sky-blue);
}

.legal-card h2 {
    color: var(--deep-ocean);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.legal-card h3 {
    color: var(--coral);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-card p, .legal-intro p {
    color: #555;
    line-height: 1.6;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-card li {
    margin-bottom: 8px;
    color: #555;
}

.legal-card a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-card a:hover {
    color: var(--coral);
    text-decoration: underline;
}

.app-title-link {
    text-decoration: none;
    color: inherit;
}

.app-title-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Contact Page Styles */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--deep-ocean);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Form field containers */
.contact-form .mb-3 {
    background-color: white;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--deep-ocean);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background-color: var(--sky-blue);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    color: white;
}

.form-control::placeholder, .form-select {
    color: rgba(255, 255, 255, 0.8);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(79, 195, 247, 0.8);
    border-color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    color: white;
}

/* Style for the dropdown options */
.form-select option {
    background-color: var(--sky-blue);
    color: white;
}

/* Using action-btn class for the contact submit button, 
   additional styles here are only for specific adjustments */
.contact-submit-btn {
    font-size: 1rem;
    margin-top: 15px;
    padding: 0.75rem 2rem;
}

/* Pricing Page Styles */
.pricing-section {
    position: relative;
    z-index: 1;
}

.pricing-title {
    color: var(--deep-ocean);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.pricing-subtitle {
    color: var(--deep-ocean);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-tiers {
    margin-top: 3rem;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.business {
    border: 2px solid var(--sky-blue);
}

.pricing-card.first-class {
    border: 2px solid gold;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -15px;
    background-color: gold;
    color: var(--deep-ocean);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 35px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.best-value-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    animation: bestValuePulse 2s ease-in-out infinite;
}

@keyframes bestValuePulse {
    0%, 100% { 
        box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4); 
    }
    50% { 
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.7); 
        transform: rotate(45deg) scale(1.05);
    }
}

.pricing-card.premium-highlight {
    border: 3px solid gold;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
    position: relative;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.pricing-card.premium-highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.annual-savings {
    text-align: center;
    margin: 0.5rem 0 1rem 0;
}

.savings-text {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Billing Toggle Switch Styles */
.billing-toggle {
    text-align: center;
    margin: 1rem 0 1.5rem 0;
}

.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--deep-ocean);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sky-blue), var(--coral));
    border-radius: 13px;
    transition: 0.3s;
    cursor: pointer;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-tier-title {
    text-align: center;
    color: var(--deep-ocean);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.2rem;
}

.pricing-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-ocean);
}

.pricing-price .price-period {
    font-size: 1rem;
    color: var(--sky-blue);
}

.pricing-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--sky-blue);
    font-style: italic;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-features ul {
    list-style: none;
    padding-left: 0.5rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    color: var(--deep-ocean);
    font-size: 1rem;
}

.pricing-features i {
    color: var(--coral);
    margin-right: 0.5rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-btn {
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.economy-btn {
    background-color: var(--deep-ocean);
    color: white;
}

.economy-btn:hover {
    background-color: var(--ocean-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.business-btn {
    background-color: var(--sky-blue);
    color: white;
}

.business-btn:hover {
    background-color: #3ab5eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 87, 145, 0.2);
}

.first-class-btn {
    background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
    color: white;
}

.first-class-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 87, 34, 0.2);
    color: white;
}

.annual-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-weight: 700;
    border: none;
}

.annual-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.pricing-toggle-info {
    margin-top: 3rem;
}

.toggle-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.toggle-container p {
    color: var(--deep-ocean);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Wizard Page Styles */
.wizard-page {
    /* Using default cursor */
    position: relative;
}

.wizard-background {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #0a1128, #1c2e4a, #31477a);
    display: flex;
    flex-direction: column;
}

/* Stars background */
#stars {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 1077px 916px #FFF, 328px 1077px #FFF, 1665px 1933px #FFF, 1658px 1042px #FFF, 934px 1596px #FFF, 1407px 607px #FFF, 1085px 482px #FFF, 1545px 1296px #FFF, 1198px 153px #FFF, 1851px 838px #FFF, 373px 1359px #FFF, 1409px 1744px #FFF, 1555px 1589px #FFF, 1699px 1004px #FFF, 936px 1499px #FFF, 1207px 1204px #FFF, 1087px 260px #FFF, 1871px 60px #FFF, 129px 568px #FFF, 1561px 1873px #FFF, 1282px 121px #FFF, 1429px 106px #FFF, 1089px 1631px #FFF, 1887px 1276px #FFF, 825px 1550px #FFF, 1452px 1282px #FFF, 395px 393px #FFF, 1669px 296px #FFF, 1536px 1583px #FFF, 923px 380px #FFF, 801px 49px #FFF, 1391px 1856px #FFF, 1589px 624px #FFF, 1384px 1079px #FFF, 647px 582px #FFF, 114px 1770px #FFF, 988px 1447px #FFF, 1284px 1745px #FFF, 1140px 1098px #FFF, 1026px 1957px #FFF, 63px 541px #FFF, 1501px 716px #FFF, 1971px 1587px #FFF, 57px 507px #FFF, 1473px 52px #FFF, 1668px 1252px #FFF, 1227px 1214px #FFF, 1939px 996px #FFF, 128px 1805px #FFF, 790px 1336px #FFF;
    animation: animateStars 50s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 1077px 916px #FFF, 328px 1077px #FFF, 1665px 1933px #FFF, 1658px 1042px #FFF, 934px 1596px #FFF, 1407px 607px #FFF, 1085px 482px #FFF, 1545px 1296px #FFF, 1198px 153px #FFF, 1851px 838px #FFF, 373px 1359px #FFF, 1409px 1744px #FFF, 1555px 1589px #FFF;
    animation: animateStars 100s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 1077px 916px #fcf6ba, 328px 1077px #fcf6ba, 1665px 1933px #fcf6ba, 1658px 1042px #fcf6ba, 934px 1596px #fcf6ba, 1407px 607px #fcf6ba;
    animation: animateStars 150s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

@keyframes animateStars {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

/* Floating Wizard Hat */
.wizard-hat {
    position: absolute;
    top: 100px;
    left: -100px;
    font-size: 50px;
    color: #4c2882;
    animation: floatHat 20s linear infinite;
    z-index: 10;
}

.wizard-hat i {
    animation: spinHat 10s linear infinite;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 233, 125, 0.5));
}

@keyframes floatHat {
    0% {
        left: -100px;
        top: 100px;
    }
    25% {
        top: 150px;
    }
    50% {
        top: 80px;
    }
    75% {
        top: 130px;
    }
    100% {
        left: calc(100% + 100px);
        top: 100px;
    }
}

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

/* Sparkles for hat */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fcf6ba;
    animation: sparkle 2s ease-in-out infinite;
}

.s1 {
    top: 10px;
    left: 10px;
    animation-delay: 0.3s;
}

.s2 {
    top: 20px;
    left: 20px;
    animation-delay: 0.7s;
}

.s3 {
    top: 15px;
    left: 30px;
    animation-delay: 0.1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Wizard content styles */
.wizard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.wizard-title {
    color: gold;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.wizard-intro {
    color: white;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.wizard-card {
    background: rgba(28, 46, 74, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.wizard-card.active {
    transform: translateY(0);
    opacity: 1;
}

.wizard-card-inner {
    padding: 25px;
}

.wizard-card h2 {
    color: #fcf6ba;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.wizard-card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fcf6ba, transparent);
}

.wizard-card p, .wizard-card ul {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.wizard-card ul {
    padding-left: 1.5rem;
}

.wizard-card li {
    margin-bottom: 10px;
    position: relative;
}

.wizard-card li:before {
    content: '✨';
    position: absolute;
    left: -1.5rem;
}

.fun-fact {
    border: 1px solid rgba(252, 246, 186, 0.3);
    background: linear-gradient(135deg, rgba(28, 46, 74, 0.8), rgba(76, 40, 130, 0.5));
    position: relative;
    overflow: visible;
}

/* Large hat animation */
.large-hat {
    position: fixed;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    font-size: 120px;
    color: gold;
    z-index: 9999;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    transition: opacity 0.4s ease-in;
    animation: none;
    pointer-events: none;
}

.large-hat.active {
    opacity: 1;
    animation: flyAcross 4s ease-in-out forwards;
}

@keyframes flyAcross {
    0% {
        left: -100px;
        transform: translateY(-50%) rotate(-15deg);
    }
    15% {
        transform: translateY(-50%) rotate(5deg);
    }
    30% {
        transform: translateY(-50%) rotate(-5deg);
    }
    45% {
        transform: translateY(-50%) rotate(5deg);
    }
    60% {
        transform: translateY(-50%) rotate(-5deg);
    }
    75% {
        transform: translateY(-50%) rotate(5deg);
    }
    90% {
        transform: translateY(-50%) rotate(-5deg);
    }
    100% {
        left: calc(100% + 100px);
        transform: translateY(-50%) rotate(10deg);
    }
}

/* Reveal animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes sparkle {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(255, 213, 79, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 213, 79, 0.8));
    }
}

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

/* Plane animation */
.plane-animation {
    position: absolute;
    top: 10%;
    left: -50px;
    font-size: 1.5rem;
    color: var(--white-sand);
    animation: flyPlane 15s linear infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes flyPlane {
    0% {
        transform: translateX(-50px) rotate(20deg);
    }
    100% {
        transform: translateX(calc(100% + 50px)) rotate(20deg);
    }
}

/* API status styling */
#apiStatus {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 1.5rem !important;
}

#apiStatus.text-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

#apiStatus.text-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Palm Tree and Cloud Decorations */
.palm-tree {
    position: absolute;
    width: 120px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M50,200 L60,120 L55,120 C55,120 40,80 60,60 C80,40 95,45 90,65 C85,85 70,75 70,75 C70,75 90,40 70,20 C50,0 30,30 45,55 C60,80 45,75 45,75 C45,75 25,50 10,70 C-5,90 15,95 30,85 C45,75 45,90 45,90 L40,120 L50,120 L50,200" fill="%234CAF50" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.palm-tree-left {
    bottom: 0;
    left: 2%;
    transform: rotate(-5deg);
}

.palm-tree-right {
    bottom: 0;
    right: 2%;
    transform: rotate(5deg) scaleX(-1);
}

.cloud {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><path d="M47.5,95 C21.27,95 0,73.73 0,47.5 C0,21.27 21.27,0 47.5,0 C56.24,0 64.4,2.9 71.12,7.97 C80.2,3.02 90.72,0 102,0 C129.61,0 152,22.39 152,50 C152,51.03 151.95,52.05 151.87,53.06 C179.66,56.66 200,80.19 200,108.5 L200,108.5 L200,120 L0,120 L0,95 L47.5,95 Z" fill="%23FFFFFF" opacity="0.8" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.cloud-1 {
    top: 15%;
    left: 10%;
    width: 100px;
    height: 60px;
    animation: cloudFloat 25s linear infinite;
}

.cloud-2 {
    top: 25%;
    right: 15%;
    width: 120px;
    height: 75px;
    animation: cloudFloat 30s linear infinite;
    animation-delay: -10s;
}

.cloud-3 {
    top: 10%;
    right: 30%;
    width: 80px;
    height: 50px;
    animation: cloudFloat 20s linear infinite;
    animation-delay: -5s;
}

@keyframes cloudFloat {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .app-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .upload-section, .results-section {
        padding: 1.5rem;
    }
    
    .custom-file-upload {
        padding: 2rem 1rem;
    }
    
    .upload-text {
        font-size: 1rem;
    }
    
    .travel-icon {
        font-size: 1.3rem;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .verify-btn, .generate-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .palm-tree {
        width: 80px;
        height: 140px;
    }
    
    .cloud {
        display: none;
    }
}

/* Weather-Based Packing Recommendations Styling */
.packing-recommendations {
    background-color: rgba(240, 248, 255, 0.6);
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--ocean-teal);
}

.packing-recommendations h2 {
    color: var(--deep-ocean);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(77, 182, 172, 0.3);
    font-size: 1.5rem;
}

.packing-category {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.packing-category h3 {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    margin-top: 0;
    margin-bottom: 12px;
}

.packing-category ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.packing-category li {
    margin-bottom: 6px;
}

/* Weather Forecast Cards */
.forecast-container {
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.forecast-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.forecast-day {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.forecast-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.forecast-date {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--deep-ocean);
}

.forecast-icon {
    width: 40px;
    height: 40px;
    margin: 5px auto;
    display: block;
}

.forecast-temp {
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-ocean);
    margin: 8px 0;
}

.forecast-condition {
    font-size: 0.8rem;
    color: var(--deep-ocean);
    opacity: 0.8;
}

/* Logo link styling */
.logo-link {
    text-decoration: none;
    color: var(--deep-ocean);
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
    color: var(--deep-ocean);
    text-decoration: none;
}

/* Drag and drop highlight style */
.custom-file-upload.highlight {
    background-color: rgba(255, 255, 255, 1);
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Compact Share Block */
.compact-share-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.9));
    border: 2px solid rgba(255, 122, 67, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.share-block-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--deep-ocean);
    font-weight: 600;
    font-size: 1.1rem;
}

.share-block-header i {
    margin-right: 0.5rem;
    color: var(--sunset-orange);
    font-size: 1.2rem;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.copy-btn {
    background: linear-gradient(135deg, var(--ocean-teal), var(--sky-blue));
    color: white;
    min-width: 120px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}

.email-share-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 280px;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.email-input.invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.send-btn {
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral));
    color: white;
    min-width: 100px;
}

.send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 67, 0.3);
}

.send-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.share-feedback {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-feedback.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.share-feedback.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .compact-share-block {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .share-row {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .email-share-section {
        flex-direction: column;
        width: 100%;
        min-width: unset;
        gap: 0.75rem;
    }
    
    .email-input {
        width: 100%;
    }
    
    .send-btn {
        width: 100%;
        justify-content: center;
    }
}
