/* Custom Premium Design System for Easytravel */

:root {
    --primary-color: #0b2b5c;      /* Deep Navy Blue */
    --secondary-color: #1e6091;    /* Accent Blue */
    --accent-color: #f7b801;       /* Yellow/Gold Highlight */
    --accent-hover: #e0a300;
    --text-color: #2b2d42;         /* Charcoal text */
    --light-bg: #f8f9fa;           /* Off-white background */
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

/* Brand Logo - Premium Canva Style */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b2b5c 0%, #1e6091 50%, #f7b801 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(11, 43, 92, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}

.navbar-brand:hover .brand-icon::after {
    left: 100%;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(11, 43, 92, 0.45);
}

.brand-icon i {
    transform: rotate(-30deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-highlight {
    color: var(--accent-color);
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #8d99ae;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.call-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #edf2f4;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.call-widget:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.call-widget:hover .call-info span {
    color: rgba(255, 255, 255, 0.7);
}

.call-widget:hover .call-info strong {
    color: var(--white);
}

.call-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
}

.ringing-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: ring 1.5s infinite ease-in-out;
}

.call-info {
    display: flex;
    flex-direction: column;
}

.call-info span {
    font-size: 0.75rem;
    color: #8d99ae;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.call-info strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section & Search Engine */
.hero-section {
    background: linear-gradient(135deg, rgba(11, 43, 92, 0.9) 0%, rgba(30, 96, 145, 0.85) 100%),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 80px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Search Box Container */
.search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Trip Type Selector */
.trip-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.trip-selector label {
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-selector input[type="radio"] {
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
}

/* Search Engine Inputs */
.search-form-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    width: 100%;
    min-width: 0;
}

/* Row 1: From & To span 3 columns each */
.search-form-grid > *:nth-child(1),
.search-form-grid > *:nth-child(2) {
    grid-column: span 3;
}

/* Row 2: Depart, Return, and Class span 2 columns each */
.search-form-grid > *:nth-child(3),
.search-form-grid > *:nth-child(4),
.search-form-grid > *:nth-child(5) {
    grid-column: span 2;
}

.search-input-group {
    background-color: var(--white);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    min-width: 0;
}

.search-input-group span {
    font-size: 0.7rem;
    color: #8d99ae;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
}

.search-input-group input,
.search-input-group select {
    border: none;
    outline: none;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.search-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b2b5c'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 18px;
    padding-right: 20px;
}

.btn-search {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    height: 100%;
    min-height: 58px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.btn-search:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 184, 1, 0.4);
    color: var(--primary-color);
}

/* Partner Airlines Brand Strip - Infinite Marquee */
.partner-airlines-section {
    background-color: var(--white);
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

/* Glass/Fade effect on edges */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    width: 100px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider-track {
    display: flex;
    gap: 100px;
    width: max-content;
    align-items: center;
    animation: scrollMarquee 40s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(0%) brightness(1.1) contrast(1.05);
    opacity: 1;
}

.partner-logo:hover {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1.2) contrast(1.1);
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Features Block */
.features-section {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid #e5e5e5;
}

.feature-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #edf2f4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--white);
}

.feature-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 15px;
}

/* Destinations & Routes Section */
.destinations-section {
    padding: 80px 0;
}

.route-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.route-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.route-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-image-wrapper img {
    transform: scale(1.08);
}

.route-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.route-body {
    padding: 22px;
}

.route-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.route-title h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.route-arrow {
    color: var(--accent-color);
    font-size: 1rem;
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f3f5;
    padding-top: 15px;
    margin-top: 15px;
}

.route-price {
    display: flex;
    flex-direction: column;
}

.route-price span {
    font-size: 0.8rem;
    color: #8d99ae;
}

.route-price strong {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.route-price strong span {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.btn-route-call {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-route-call:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Trustpilot Style Banner */
.support-banner {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.trustpilot-badge i {
    color: #00b67a;
    font-size: 1.4rem;
}

.trustpilot-badge span {
    font-weight: 700;
    font-size: 1.1rem;
}

.support-checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.support-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.support-checklist li i {
    color: #2b9348;
    font-size: 1.3rem;
    margin-top: 2px;
}

.support-checklist h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.support-checklist p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.support-images-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.support-img-1 {
    grid-row: span 2;
    height: 100%;
}

.support-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Corporate Info SEO Section */
.seo-section {
    padding: 80px 0;
    background-color: #f1f3f5;
}

.seo-content {
    font-size: 0.95rem;
    color: #4a4e69;
    line-height: 1.7;
}

.seo-content h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-content h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.seo-content ul {
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
}

/* Footer & Legals */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 100px; /* Extends bottom padding for mobile footer support bar */
    font-size: 0.85rem;
    line-height: 1.6;
    border-top: 3px solid var(--accent-color);
}

.footer h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-divider {
    border-top: 1px solid #222;
    margin: 40px 0;
}

.footer-disclaimer p {
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #777;
}

.footer-copyright {
    text-align: center;
    color: #555;
    margin-top: 30px;
}

/* Sticky Bottom Call Bar for Mobile */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 999;
    padding: 12px 16px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    display: none; /* Managed dynamically via CSS media query */
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-mobile-action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white) !important;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-mobile-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-mobile-action i {
    font-size: 1.1rem;
}

/* Call Specialist Button */
.btn-mobile-action.call-specialist {
    background-color: #0f9d58; /* Teal/Green */
}

.btn-mobile-action.call-specialist:hover {
    background-color: #0c8249;
}

/* WhatsApp Button */
.btn-mobile-action.whatsapp-action {
    background-color: #25d366; /* Bright Green */
}

.btn-mobile-action.whatsapp-action:hover {
    background-color: #1ebd54;
}

/* Glassmorphic Legal Modal Overlays */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 43, 92, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 80%;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.legal-modal-overlay.active .legal-modal-content {
    transform: scale(1);
}

.legal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8d99ae;
    cursor: pointer;
    transition: var(--transition);
}

.legal-modal-close:hover {
    color: var(--primary-color);
}

.legal-modal-body h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.legal-modal-body h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-modal-body p {
    color: #4a4e69;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Call-Force Popup Modal */
.call-force-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 43, 92, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.call-force-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.call-force-card {
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-force-overlay.active .call-force-card {
    transform: translateY(0);
}

.call-force-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
}

.call-force-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.call-force-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.call-force-badge {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.call-force-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.call-force-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.call-force-body {
    padding: 35px;
}

.call-force-num {
    display: block;
    text-align: center;
    background-color: #f1f3f5;
    border: 2px dashed var(--secondary-color);
    border-radius: 12px;
    padding: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 25px;
    transition: var(--transition);
}

.call-force-num:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.call-force-divider {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.call-force-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    z-index: 1;
}

.call-force-divider span {
    background-color: var(--white);
    padding: 0 15px;
    font-size: 0.8rem;
    color: #8d99ae;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.popup-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.popup-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.15);
}

.btn-popup-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-popup-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Cookie Strip */
.cookie-strip {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 43, 92, 0.95);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-strip.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-strip p {
    margin: 0;
    font-size: 0.85rem;
    max-width: 80%;
}

.cookie-strip a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-strip .btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-strip .btn-cookie-accept:hover {
    background-color: var(--white);
}

/* Animations */
@keyframes ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet landscape / small desktop (768px – 1199px) --- */
@media (min-width: 768px) and (max-width: 1199px) {
    .search-form-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .search-form-grid > *:nth-child(1),
    .search-form-grid > *:nth-child(2) {
        grid-column: span 2;
    }
    .search-form-grid > *:nth-child(3),
    .search-form-grid > *:nth-child(4) {
        grid-column: span 2;
    }
    .search-form-grid > *:nth-child(5) {
        grid-column: span 4;
    }
    .search-container {
        padding: 22px;
    }
}

/* --- Tablet portrait (600px – 767px) --- */
@media (min-width: 600px) and (max-width: 767px) {
    .search-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .search-form-grid > * {
        grid-column: span 1 !important;
    }
    .search-container {
        padding: 18px;
    }
}

/* --- Below 991px: hero content stacks --- */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
        padding: 0 8px;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
    }
    .hero-content p {
        font-size: clamp(0.88rem, 3vw, 1.1rem);
    }
    .support-images-grid {
        margin-top: 40px;
    }
}

/* --- Mobile (max 767px) --- */
@media (max-width: 767px) {
    /* Navbar */
    .navbar .container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .navbar-brand span {
        font-size: 1.2rem !important;
    }
    .call-widget {
        padding: 5px 10px !important;
        gap: 6px !important;
    }
    .call-info span {
        font-size: 0.6rem !important;
    }
    .call-info strong {
        font-size: 0.8rem !important;
    }
    .call-icon-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }

    /* Hero */
    .hero-section {
        padding: 36px 0 50px;
    }
    .hero-content {
        text-align: center;
        padding: 0 4px;
    }
    .hero-content h1 {
        font-size: clamp(1.4rem, 7vw, 2rem);
        line-height: 1.3;
    }
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }

    /* Search form */
    .search-container {
        padding: 16px 14px;
        border-radius: 10px;
    }
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .search-form-grid > * {
        grid-column: span 1 !important;
    }
    .trip-selector {
        gap: 14px;
        flex-wrap: wrap;
    }

    /* Mobile sticky call bar */
    .mobile-call-bar {
        display: flex;
    }

    /* Cookie strip sits above mobile bar */
    .cookie-strip {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        left: 8px;
        right: 8px;
        bottom: 72px;
    }
    .cookie-strip p {
        max-width: 100%;
        font-size: 0.8rem;
    }

    /* Support grid */
    .support-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .support-img-1 {
        grid-row: auto;
        height: 200px;
    }
    .support-images-grid img {
        max-height: 180px;
        object-fit: cover;
    }

    /* Popup / callback form */
    .call-force-card {
        width: 95%;
        max-width: 95vw;
    }
    .call-force-body {
        padding: 20px 16px;
    }
    .call-force-num {
        font-size: 1.3rem;
    }
    .call-force-header {
        padding: 22px 16px;
    }
    .popup-form input {
        font-size: 0.85rem;
    }

    /* Route cards */
    .route-body {
        padding: 16px;
    }
    .route-title h4 {
        font-size: 1rem;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* --- Very small phones (max 400px) --- */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.35rem;
    }
    .hero-content p {
        font-size: 0.82rem;
    }
    .search-container {
        padding: 12px 10px;
    }
    .call-info {
        display: none;  /* show only icon on very tiny screens */
    }
    .call-force-num {
        font-size: 1.1rem;
    }
}

/* Autocomplete Dropdown styling */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: none;
}

.autocomplete-header {
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8d99ae;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    text-align: left;
}

.autocomplete-no-results {
    padding: 15px;
    font-size: 0.85rem;
    color: #8d99ae;
    text-align: center;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

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

.autocomplete-item:hover {
    background-color: #edf2f4;
}

.autocomplete-item .airport-details {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.autocomplete-item .airport-city {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-align: left;
}

.autocomplete-item .airport-name {
    font-size: 0.75rem;
    color: #8d99ae;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.autocomplete-item .airport-iata {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Flight Results Section */
.results-section {
    padding: 60px 0;
    background-color: #f1f3f5;
    border-bottom: 1px solid #e5e5e5;
}

.results-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.flight-result-card {
    background-color: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.flight-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(30, 96, 145, 0.2);
}

.path-line {
    height: 2px;
    background-color: #dcdcdc;
    width: 100%;
}

.dot-start, .dot-end {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    top: -2px;
}

.dot-start { left: 0; }
.dot-end { right: 0; }

.flight-price-booking {
    border-left: 1px solid #edf2f4;
}

@media (max-width: 768px) {
    .flight-price-booking {
        border-left: none !important;
        padding-left: 0 !important;
        width: 100%;
        border-top: 1px solid #edf2f4;
        padding-top: 20px;
        align-items: center !important;
    }
}

/* Specialized Travel Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid #e5e5e5;
}

.service-card {
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(30, 96, 145, 0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(11, 43, 92, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-service-call {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-service-call:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Hero Section - Call Now Button */
.btn-call-now-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 22px rgba(34, 197, 94, 0.45);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-call-now-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #86efac, #4ade80);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.btn-call-now-hero:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.55);
    border-color: rgba(255,255,255,0.3);
}

.btn-call-now-hero:hover::before {
    opacity: 1;
}

.btn-call-now-hero i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    animation: ringShake 1.8s ease-in-out infinite;
}

.btn-call-now-hero span,
.btn-call-now-hero {
    position: relative;
    z-index: 1;
}

@keyframes ringShake {
    0%, 100% { transform: rotate(0deg); }
    10%       { transform: rotate(-15deg); }
    20%       { transform: rotate(15deg); }
    30%       { transform: rotate(-10deg); }
    40%       { transform: rotate(10deg); }
    50%       { transform: rotate(0deg); }
}

/* Navbar - Call Now Button */
.btn-navbar-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.45);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-navbar-call:hover {
    color: #fff;
    background: linear-gradient(135deg, #86efac, #4ade80);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.55);
    border-color: rgba(255,255,255,0.25);
}

.btn-navbar-call i {
    font-size: 1rem;
    animation: ringShake 1.8s ease-in-out infinite;
}
