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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #FF4500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: #FF4500;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF4500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-stats {
    display: flex;
    align-items: center;
}

.footer-copyright {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Visitor Counter Styles (Footer Version) */
.visitor-counter {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: counterPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.visitor-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@keyframes counterPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }
}

.counter-icon {
    font-size: 1rem;
    margin-right: 6px;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.counter-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.counter-number {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.counter-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-logo i {
    margin-right: 15px;
    font-size: 32px;
    color: #6A6ACD;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #FF4500;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF4500;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Book Flights Button */

/* API Status Indicator */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.status-dot.connected {
    background-color: #48bb78;
    box-shadow: 0 0 8px rgba(72, 187, 120, 0.4);
}

.status-dot.disconnected {
    background-color: #f56565;
    box-shadow: 0 0 8px rgba(245, 101, 101, 0.4);
}

.api-status {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Flight Search Results */
.flight-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.flight-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.airline-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.airline-info h4 {
    margin: 0;
    color: #1e293b;
    font-size: 18px;
}

.flight-number {
    color: #64748b;
    font-size: 14px;
}

.price-info {
    text-align: right;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #059669;
}

.per-person {
    font-size: 12px;
    color: #64748b;
}

.flight-details {
    margin-bottom: 20px;
}

.route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.time {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.city {
    font-size: 14px;
    color: #64748b;
}

.flight-path {
    flex: 2;
    text-align: center;
    position: relative;
}

.path-line {
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    margin: 10px 0;
}

.flight-path i {
    color: #3182ce;
    font-size: 16px;
    background: white;
    padding: 0 10px;
    position: relative;
    top: -10px;
}

.flight-info {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
}

.flight-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.flight-info i {
    color: #3182ce;
}

.flight-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #3182ce;
    color: white;
}

.btn-primary:hover {
    background: #2c5aa0;
}

.btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-deals {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 10px;
}

.btn-deals:hover {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Loading and Status States */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #64748b;
}

.loading-spinner i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3182ce;
}

.no-results, .error-message {
    text-align: center;
    padding: 40px;
    color: #64748b;
}

.no-results i, .error-message i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.error-message i {
    color: #ef4444;
}

/* Form Improvements */
.search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-btn i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.book-flights-btn {
    background: linear-gradient(135deg, #FF4500, #e63900);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.book-flights-btn:hover {
    background: linear-gradient(135deg, #e63900, #cc3300);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.book-flights-btn.active {
    background: linear-gradient(135deg, #e63900, #cc3300);
}

/* Flight Deals Button */
.deals-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.deals-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);
    transition: left 0.5s;
}

.deals-btn:hover::before {
    left: 100%;
}

.deals-btn:hover {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* AI Travel Expert Button */
.hmt-gpt-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.hmt-gpt-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);
    transition: left 0.5s;
}

.hmt-gpt-btn:hover::before {
    left: 100%;
}

.hmt-gpt-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hmt-gpt-btn.active {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

/* Brain icon animation */
.hmt-gpt-btn:hover {
    animation: brainPulse 0.6s ease-in-out;
}

@keyframes brainPulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
    100% { transform: translateY(-2px) scale(1); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1a365d;
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.step {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #667eea, #764ba2);
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #3182ce, #667eea);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(49, 130, 206, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.step h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a365d;
    background: linear-gradient(135deg, #3182ce, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CEO Message Section */
.ceo-message {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.ceo-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ceo-portrait {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.ceo-portrait:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ceo-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ceo-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #3182ce, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.ceo-signature {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.signature-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 4px;
}

.signature-title {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

/* Case Submission Section */
.case-submission {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.case-submission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.case-submission h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a365d;
    position: relative;
    z-index: 2;
}

.case-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

.case-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3182ce, #667eea, #764ba2);
    border-radius: 25px 25px 0 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
    position: relative;
}

.form-group label::after {
    content: ' *';
    color: #e53e3e;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-item i {
    font-size: 2.5rem;
    color: #3182ce;
    width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Book Flights Page Styles */
.flight-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flight-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.flight-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flight-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Flight Search Section */
.flight-search-section {
    padding: 60px 0;
    background: #f8fafc;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.search-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: #3182ce;
    background: rgba(49, 130, 206, 0.1);
}

.tab-btn.active {
    background: #3182ce;
    color: white;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.tab-btn i {
    font-size: 0.9rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-grid .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-grid .form-group label i {
    color: #3182ce;
    font-size: 0.8rem;
}

.form-grid .form-group input,
.form-grid .form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.form-grid .form-group input:focus,
.form-grid .form-group select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
    transform: translateY(-2px);
}

.form-grid .form-group input::placeholder {
    color: #9ca3af;
}

/* Passenger Selector */
.passenger-selector {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.passenger-type:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.passenger-type span {
    font-weight: 600;
    color: #374151;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    border-color: #3182ce;
    color: #3182ce;
    transform: scale(1.1);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#adultsCount,
#childrenCount,
#infantsCount {
    font-weight: 600;
    color: #374151;
    min-width: 20px;
    text-align: center;
}

/* Search Button */
.search-actions {
    text-align: center;
}

.search-btn {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.4);
}

.search-btn i {
    font-size: 1rem;
}

/* Flight Search Form Specific Styles */
.flight-search-form {
    margin-top: 20px;
}

.city-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.city-suggestions.show {
    display: block;
}

.city-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.city-suggestion-item:hover {
    background-color: #f8fafc;
}

.city-suggestion-item:last-child {
    border-bottom: none;
}

.origin-group,
.destination-group,
.date-group,
.passengers-group {
    position: relative;
}

.return-date-group {
    display: block;
}

.return-date-group.hidden {
    display: none;
}

/* Additional Book Flights Page Styles */
.route-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.route-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.route-card:hover {
    border-color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.2);
}

.route-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #374151;
}

.route-cities .city {
    font-size: 1.1rem;
}

.route-cities i {
    color: #3182ce;
    font-size: 0.9rem;
}

.route-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
}

.book-route-btn {
    width: 100%;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-route-btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #1a365d);
    transform: translateY(-2px);
}

/* Search Results Section */
.search-results {
    padding: 60px 0;
    background: #f8fafc;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 30px;
}

.results-filters {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
}

.filter-group select {
    padding: 8px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
}

.price-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-slider input[type="range"] {
    width: 150px;
}

.price-slider span {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.results-container {
    margin-top: 40px;
}

.flight-result {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.flight-result:hover {
    border-color: #3182ce;
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.1);
}

.flight-info {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.airline h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 5px;
}

.flight-number {
    color: #64748b;
    font-size: 0.9rem;
}

.timing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.departure, .arrival {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duration {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.duration-text {
    font-weight: 600;
    color: #374151;
}

.stops {
    font-size: 0.8rem;
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.price {
    text-align: center;
}

.amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 15px;
}

.select-flight-btn {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-flight-btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #1a365d);
    transform: translateY(-2px);
}

.loading-spinner {
    text-align: center;
    padding: 60px 0;
}

.loading-spinner i {
    font-size: 3rem;
    color: #3182ce;
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Flight Deals Section */
.flight-deals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.deals-header {
    text-align: center;
    margin-bottom: 50px;
}

.deals-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deals-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.view-all-deals-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.view-all-deals-btn:hover {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

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

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deal-card.featured {
    border: 2px solid #FF6B35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.deal-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.deal-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 10px;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 15px;
}

.from-city, .to-city {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
}

.flight-icon {
    font-size: 1.5rem;
    animation: flightFloat 2s ease-in-out infinite;
}

@keyframes flightFloat {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(5px);
    }
}

.deal-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF6B35;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.deal-details {
    margin-bottom: 20px;
}

.airline-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.airline {
    font-weight: 600;
    color: #4a5568;
}

.duration {
    color: #64748b;
    font-size: 0.9rem;
}

.deal-dates {
    color: #64748b;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.savings {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.deal-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.deal-book-btn:hover {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HMT GPT Section Styles */
.hmt-gpt-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    animation: sectionPulse 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes sectionPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(102, 126, 234, 0.4);
    }
}

.hmt-gpt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    animation: headerGlow 4s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% {
        filter: brightness(1) saturate(1);
    }
    100% {
        filter: brightness(1.1) saturate(1.2);
    }
}

/* Floating AI Icons */
.hmt-gpt-section::after {
    content: '🧠 🤖 ✈️ 💡 🌍 🎯';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatIcons 8s ease-in-out infinite;
    z-index: 1;
}

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

.hmt-gpt-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hmt-gpt-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.hmt-gpt-header h2::before {
    content: '✨';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.hmt-gpt-header h2::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.hmt-gpt-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hmt-gpt-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Chat Interface */
.hmt-gpt-chat {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
    animation: chatFloat 4s ease-in-out infinite;
    position: relative;
}

@keyframes chatFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    }
}

.hmt-gpt-chat::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Attention Grabber */
.floating-attention {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    cursor: pointer;
    animation: floatingBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
    display: none;
}

@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }
}

.floating-attention:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.7);
}

.attention-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.attention-icon {
    font-size: 1.2rem;
    animation: iconSpin 3s linear infinite;
}

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

.attention-text {
    white-space: nowrap;
}

/* Show floating attention on mobile */
@media (max-width: 768px) {
    .floating-attention {
        display: block;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .attention-content {
        gap: 8px;
    }
    
    .attention-icon {
        font-size: 1rem;
    }
}

.chat-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: brainFloat 3s ease-in-out infinite;
}

@keyframes brainFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: translateY(-3px) rotate(2deg);
        filter: brightness(1.1);
    }
}

.avatar-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.status-indicator {
    font-size: 0.9rem;
    opacity: 0.9;
}

.status-indicator.online {
    color: #10b981;
}

.chat-controls {
    display: flex;
    gap: 10px;
}

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

.clear-chat-btn:hover,
.language-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message {
    display: flex;
    gap: 15px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    animation: brainGlow 2s ease-in-out infinite alternate;
}

@keyframes brainGlow {
    0% { 
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
        transform: scale(1.02);
    }
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
}

.message-content {
    flex: 1;
}

.message-text {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    line-height: 1.6;
}

.user-message .message-text {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    border: none;
}

.message-text p {
    margin: 0 0 10px 0;
}

.message-text ul {
    margin: 10px 0;
    padding-left: 20px;
}

.message-text li {
    margin: 5px 0;
}

.message-time {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

/* Chat Input */
.chat-input-container {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: buttonBounce 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    }
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

#chatInput:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.send-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.send-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: scale(1.1);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 10px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Sidebar */
.hmt-gpt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.sidebar-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.query-suggestions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggestion-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.suggestion-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateX(5px);
}

.analytics-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.language-selector select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    /* Mobile Visitor Counter */
    .visitor-counter {
        padding: 6px 10px;
        font-size: 0.7rem;
        margin-left: 10px;
    }
    
    .counter-icon {
        font-size: 0.9rem;
        margin-right: 4px;
    }
    
    .counter-number {
        font-size: 0.9rem;
    }
    
    .counter-label {
        font-size: 0.6rem;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .visitor-counter {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Flight Deals Mobile Styles */
    .deals-header h2 {
        font-size: 2rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .deal-card {
        padding: 20px;
    }
    
    .deal-route {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .deal-price {
        font-size: 1.5rem;
    }
    
    .route-cities {
        gap: 10px;
    }
    
    .from-city, .to-city {
        font-size: 1.1rem;
    }
}

/* Flight Deals Page Styles */
.deals-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.deals-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.deals-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deals-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: white;
    color: #FF6B35;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.all-deals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.deals-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.deal-card.hot-deal {
    border: 2px solid #FF6B35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    animation: hotDealPulse 3s ease-in-out infinite;
}

@keyframes hotDealPulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 20px 45px rgba(255, 107, 53, 0.4);
    }
}

.deal-card.premium-deal {
    border: 2px solid #667eea;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.deal-card.popular-deal {
    border: 2px solid #10b981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.deal-card.flash-deal {
    border: 2px solid #f59e0b;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
    animation: flashDealBlink 2s ease-in-out infinite;
}

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

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Mobile Responsive for Deals Page */
@media (max-width: 768px) {
    .deals-hero h1 {
        font-size: 2.5rem;
    }
    
    .deals-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .deals-filters {
        gap: 10px;
        padding: 0 20px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .deals-grid-extended {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}

/* Visitor Stats Popup */
.visitor-stats-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.stats-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

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

.stats-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.stats-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.stats-header h3 {
    margin: 0;
    color: #1a365d;
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-footer {
    text-align: center;
}

.close-stats {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-stats:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Claim & Assistance Button */
.claim-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.claim-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.claim-btn.active {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .book-flights-btn {
        margin-top: 20px !important;
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
        background: linear-gradient(135deg, #FF4500, #e63900) !important;
        color: white !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3) !important;
        text-align: center !important;
        display: block !important;
        width: 200px !important;
        margin: 20px auto !important;
    }
    
    .book-flights-btn:hover {
        background: linear-gradient(135deg, #e63900, #cc3300) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4) !important;
    }
    
    .hmt-gpt-btn {
        margin-top: 20px !important;
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
        text-align: center !important;
        display: block !important;
        width: 200px !important;
        margin: 20px auto !important;
    }
    
    .hmt-gpt-btn:hover {
        background: linear-gradient(135deg, #5a67d8, #6b46c1) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    }
    
    /* HMT GPT Mobile Styles */
    .hmt-gpt-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hmt-gpt-chat {
        height: 500px;
    }
    
    .hmt-gpt-header h2 {
        font-size: 2rem;
        animation: mobileTitlePulse 2s ease-in-out infinite;
    }
    
    @keyframes mobileTitlePulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    .hmt-gpt-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .chat-header {
        padding: 15px;
    }
    
    .chat-avatar {
        gap: 10px;
    }
    
    .avatar-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .avatar-info h3 {
        font-size: 1rem;
    }
    
    .chat-messages {
        padding: 15px;
        gap: 15px;
    }
    
    .message {
        max-width: 90%;
    }
    
    .message-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .message-text {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .chat-input-container {
        padding: 15px;
    }
    
    .quick-actions {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .quick-action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    #chatInput {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .send-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .sidebar-section {
        padding: 20px;
    }
    
    .sidebar-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .suggestion-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .case-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    /* Flight Search Page Mobile Styles */
    .flight-hero {
        padding: 100px 0 40px;
    }
    
    .flight-hero h1 {
        font-size: 2rem;
    }
    
    .search-card {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .ceo-portrait {
        width: 160px;
        height: 200px;
        margin: 0 auto;
    }
    
    /* Mobile styles for additional sections */
    .route-cards {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .flight-info {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .timing {
        flex-direction: column;
        gap: 20px;
    }
    
    .results-filters {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .case-form {
        padding: 20px 15px;
    }
    
    .ceo-portrait {
        width: 140px;
        height: 180px;
    }
}
