/**
 * FOTG Developer Frontend Styles
 * Fully isolated from theme/template kit styles
 * Color scheme based on Folks On The Go logo
 */

/* ==========================================================================
   CSS Variables - Logo-based Color Scheme
   These are defaults that can be overridden from Admin > FOTG Settings
   ========================================================================== */
:root {
    /* PRIMARY - Gold from logo ring and text */
    --fotg-primary: #C9A227;          /* Main gold color */
    --fotg-primary-hover: #B8910F;    /* Darker gold on hover */
    --fotg-primary-light: #D4A84B;    /* Lighter gold for gradients */

    /* SECONDARY - Purple from logo city skyline */
    --fotg-secondary: #4A2C6A;        /* Deep purple */
    --fotg-secondary-hover: #5B3A7A;  /* Lighter purple on hover */
    --fotg-secondary-light: #6B4A8A;  /* Light purple */

    /* ACCENT - Gold accent for highlights */
    --fotg-accent: #C9A227;           /* Gold accent */

    /* CTA Button - Green for action buttons (high contrast) */
    --fotg-cta: #22C55E;
    --fotg-cta-hover: #16A34A;

    /* Neutrals */
    --fotg-text: #1A1A1A;
    --fotg-text-light: #64748B;
    --fotg-text-muted: #94A3B8;
    --fotg-bg: #FFFFFF;
    --fotg-bg-light: #F8FAFC;
    --fotg-border: #E2E8F0;
    --fotg-input-bg: #F8FAFC;

    /* Effects */
    --fotg-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --fotg-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --fotg-shadow-gold: 0 4px 14px rgba(201, 162, 39, 0.3);
    --fotg-radius: 16px;
    --fotg-radius-sm: 10px;
    --fotg-transition: all 0.3s ease;
}

/* ==========================================================================
   ISOLATION - Prevent theme/template kit conflicts
   ========================================================================== */
.fotg-booking-widget,
.fotg-booking-widget *,
.fotg-booking-widget *::before,
.fotg-booking-widget *::after,
.fotg-destinations-section,
.fotg-destinations-section *,
.fotg-booking-details-wrap,
.fotg-booking-details-wrap * {
    box-sizing: border-box !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Reset common theme overrides */
.fotg-booking-widget a,
.fotg-destinations-section a,
.fotg-booking-details-wrap a {
    text-decoration: none !important;
    box-shadow: none !important;
}

.fotg-booking-widget button,
.fotg-booking-widget input,
.fotg-booking-widget select,
.fotg-booking-widget textarea {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    border-radius: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
.fotg-booking-widget,
.fotg-booking-widget * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fotg-booking-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--fotg-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.fotg-hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    transition: background-image 0.5s ease, opacity 0.3s ease;
}

/* Background loading state */
.fotg-hero-section.fotg-bg-loading {
    opacity: 0.85;
}

.fotg-hero-section.fotg-bg-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: fotg-spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes fotg-spin {
    to { transform: rotate(360deg); }
}

.fotg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.fotg-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

/* ==========================================================================
   City Selector (Legacy)
   ========================================================================== */
.fotg-city-selector-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}

.fotg-city-selector {
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 40px 10px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    cursor: pointer;
    transition: var(--fotg-transition);
}

.fotg-city-selector:hover,
.fotg-city-selector:focus {
    background: rgba(255, 255, 255, 0.25);
    outline: none;
}

.fotg-city-selector option {
    color: var(--fotg-text);
    background: #fff;
}

.fotg-selector-arrow {
    position: absolute;
    right: 14px;
    width: 16px;
    height: 16px;
    color: #fff;
    pointer-events: none;
}

/* ==========================================================================
   City Search Autocomplete (OpenStreetMap)
   ========================================================================== */
.fotg-city-search-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    min-width: 280px;
}

.fotg-city-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.fotg-city-search-input,
.fotg-booking-widget input[type="text"].fotg-city-search-input,
.fotg-booking-widget input[type="search"].fotg-city-search-input,
input.fotg-city-search-input {
    appearance: none;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.5rem 2.5rem !important;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    width: 100%;
    cursor: text;
    transition: var(--fotg-transition);
}

.fotg-city-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.fotg-city-search-input:hover,
.fotg-city-search-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.fotg-city-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 2;
}

.fotg-city-search-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: transform 0.2s ease;
    z-index: 2;
}

.fotg-city-search-wrap.active .fotg-city-search-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* City Search Results Dropdown */
.fotg-city-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.fotg-city-results-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    color: var(--fotg-text-light);
    font-size: 14px;
}

.fotg-spinner-small {
    width: 18px;
    height: 18px;
    border: 2px solid var(--fotg-border);
    border-top-color: var(--fotg-primary);
    border-radius: 50%;
    animation: fotg-spin 0.8s linear infinite;
}

.fotg-city-results-empty {
    padding: 20px 16px;
    text-align: center;
    color: var(--fotg-text-light);
    font-size: 14px;
}

.fotg-city-results-list {
    padding: 8px 0;
}

.fotg-city-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.fotg-city-result-item:hover {
    background: var(--fotg-input-bg);
}

.fotg-city-result-item.selected {
    background: rgba(201, 164, 92, 0.1);
}

.fotg-city-result-icon {
    width: 36px;
    height: 36px;
    background: var(--fotg-input-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fotg-city-result-icon svg {
    width: 18px;
    height: 18px;
    color: var(--fotg-primary);
}

.fotg-city-result-info {
    flex: 1;
    min-width: 0;
}

.fotg-city-result-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fotg-city-result-state {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin-top: 2px;
}

/* ==========================================================================
   Hero Heading
   ========================================================================== */
.fotg-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.fotg-hero-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================================================
   Booking Card
   ========================================================================== */
.fotg-booking-card {
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 440px;
    max-width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fotg-booking-card.fotg-standalone {
    margin: 0 auto;
}

.fotg-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Form Groups
   ========================================================================== */
.fotg-form-group {
    margin-bottom: 16px;
}

/* ==========================================================================
   Input Wrapper & Fields
   ========================================================================== */
.fotg-input-wrapper {
    position: relative;
}

.fotg-input-icon,
.fotg-booking-widget .fotg-input-icon,
.elementor-widget-fotg-booking .fotg-input-icon {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    color: var(--fotg-text-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1 !important;
    pointer-events: none !important;
    line-height: 1 !important;
}

.fotg-input-icon svg,
.fotg-booking-widget .fotg-input-icon svg,
.elementor-widget-fotg-booking .fotg-input-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fotg-input-icon i,
.fotg-booking-widget .fotg-input-icon i,
.elementor-widget-fotg-booking .fotg-input-icon i {
    font-size: 18px !important;
    line-height: 1 !important;
    color: inherit !important;
}

.fotg-icon-from {
    color: #10B981;
}

.fotg-icon-from svg {
    fill: none;
    stroke: #10B981;
}

.fotg-icon-to {
    color: #EF4444;
}

.fotg-icon-to svg {
    fill: #EF4444;
    stroke: none;
}

.fotg-input-field,
.fotg-booking-widget .fotg-input-field,
.elementor-widget-fotg-booking .fotg-input-field {
    width: 100%;
    padding: 16px 16px 16px 56px !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--fotg-text);
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.2s ease;
    outline: none;
}

.fotg-input-field::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.fotg-input-field:hover {
    border-color: #D1D5DB;
    background: #fff;
}

.fotg-input-field:focus {
    border-color: var(--fotg-primary) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2) !important;
    background: #fff !important;
}

/* Select Fields */
select.fotg-input-field {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

/* Elementor Override - Force padding on all input fields */
input#fotg-pickup-location,
input#fotg-dropoff-location,
.elementor-widget-fotg-booking input.fotg-input-field,
.elementor-widget-fotg-booking input.fotg-autocomplete {
    padding-left: 56px !important;
}

/* Elementor Override - Force z-index for dropdown suggestions */
.elementor-widget-fotg-booking .fotg-osm-suggestions,
.elementor-element .fotg-osm-suggestions,
.fotg-booking-widget .fotg-osm-suggestions {
    z-index: 99999 !important;
    position: absolute !important;
}

.elementor-widget-fotg-booking .fotg-input-wrapper,
.elementor-element .fotg-input-wrapper,
.fotg-booking-widget .fotg-input-wrapper {
    position: relative !important;
    z-index: auto !important;
}

.elementor-widget-fotg-booking .fotg-from-group,
.elementor-widget-fotg-booking .fotg-to-group {
    position: relative;
    z-index: 10;
}

.elementor-widget-fotg-booking .fotg-from-group:focus-within,
.elementor-widget-fotg-booking .fotg-to-group:focus-within {
    z-index: 100;
}

/* ==========================================================================
   Route Section
   ========================================================================== */
.fotg-route-section {
    position: relative;
    margin-bottom: 24px;
}

.fotg-route-connector {
    position: absolute;
    left: 27px;
    top: 54px;
    bottom: 54px;
    width: 2px;
    z-index: 0;
}

.fotg-route-line {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        #E5E7EB 0,
        #E5E7EB 5px,
        transparent 5px,
        transparent 10px
    );
}

.fotg-from-group,
.fotg-to-group {
    position: relative;
    z-index: 1;
}

.fotg-from-group {
    margin-bottom: 12px;
}

.fotg-to-group {
    margin-top: 12px;
}

/* ==========================================================================
   Airport Suggestions
   ========================================================================== */
.fotg-airport-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    padding: 8px;
}

.fotg-airport-suggestions-header {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6B7280;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 4px;
}

.fotg-airport-option {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 12px;
    margin-bottom: 4px;
    gap: 14px;
}

.fotg-airport-option:last-child {
    margin-bottom: 0;
}

.fotg-airport-option:hover {
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
}

.fotg-airport-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8F4F1 0%, #6EE7B7 100%);
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.fotg-airport-info {
    flex: 1;
    min-width: 0;
}

.fotg-airport-name {
    display: block;
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    line-height: 1.4;
}

.fotg-airport-code {
    display: inline-block;
    background: #E5E7EB;
    color: #374151;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.fotg-airport-address {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   OpenStreetMap/Nominatim Suggestions
   ========================================================================== */
.fotg-osm-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--fotg-border);
    border-radius: var(--fotg-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 99999 !important;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
    display: none;
}

/* Ensure parent has proper stacking context */
.fotg-from-group,
.fotg-to-group {
    position: relative;
    z-index: 10;
}

.fotg-from-group:focus-within,
.fotg-to-group:focus-within {
    z-index: 100;
}

.fotg-osm-suggestion {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--fotg-border);
    gap: 12px;
}

.fotg-osm-suggestion:last-child {
    border-bottom: none;
}

.fotg-osm-suggestion:hover {
    background: var(--fotg-input-bg);
}

.fotg-osm-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fotg-osm-text {
    flex: 1;
    font-size: 14px;
    color: var(--fotg-text);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Airport-specific suggestion styles */
.fotg-airport-result {
    align-items: flex-start;
}

.fotg-airport-result .fotg-osm-icon {
    font-size: 20px;
    color: var(--fotg-primary);
    margin-top: 2px;
}

.fotg-osm-airport-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.fotg-osm-airport-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fotg-airport-code-tag {
    display: inline-flex;
    align-items: center;
    background: var(--fotg-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.fotg-osm-airport-location {
    font-size: 12px;
    color: var(--fotg-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fotg-osm-no-results {
    padding: 16px;
    text-align: center;
    color: var(--fotg-text-light);
    font-size: 14px;
}

/* Generic place suggestion styles (for dynamic locations) */
.fotg-osm-place-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.fotg-osm-place-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fotg-osm-place-location {
    font-size: 12px;
    color: var(--fotg-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fotg-icon-airport {
    color: var(--fotg-primary);
}

.fotg-icon-location {
    color: var(--fotg-text-light);
}

/* Make input wrapper relative for absolute positioning of suggestions */
.fotg-input-wrapper {
    position: relative;
}

/* ==========================================================================
   Form Labels
   ========================================================================== */
.fotg-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   Date & Time Row
   ========================================================================== */
.fotg-datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.fotg-date-group .fotg-input-field,
.fotg-time-group .fotg-input-field {
    padding-left: 52px;
}

/* ==========================================================================
   Custom Time Picker
   ========================================================================== */
.fotg-time-group .fotg-input-wrapper {
    position: relative;
}

.fotg-time-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    cursor: pointer !important;
    text-align: left !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #1E293B !important;
    padding: 14px 16px 14px 44px !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1.4 !important;
}

.fotg-time-trigger:hover {
    border-color: #B8F4F1 !important;
}

.fotg-time-trigger:focus {
    outline: none !important;
    border-color: #B8F4F1 !important;
    box-shadow: 0 0 0 3px rgba(184, 244, 241, 0.3) !important;
}

.fotg-time-trigger[aria-expanded="true"] {
    border-color: #B8F4F1 !important;
    box-shadow: 0 0 0 3px rgba(184, 244, 241, 0.3) !important;
}

.fotg-time-display {
    flex: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #1E293B !important;
}

.fotg-time-trigger .fotg-time-display.fotg-placeholder {
    color: #94A3B8 !important;
}

.fotg-time-chevron {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    color: #1E293B !important;
    transition: transform 0.2s ease !important;
    margin-left: 8px !important;
}

.fotg-time-trigger[aria-expanded="true"] .fotg-time-chevron {
    transform: rotate(180deg) !important;
}

/* Dropdown Panel */
.fotg-time-dropdown {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-8px) !important;
    min-width: 280px !important;
    width: max-content !important;
    max-width: 320px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06) !important;
    z-index: 1000 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow: hidden !important;
}

.fotg-time-dropdown.fotg-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Period Tabs */
.fotg-time-periods {
    display: flex !important;
    gap: 4px !important;
    padding: 10px 12px 6px !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

.fotg-time-period {
    flex: 1 !important;
    padding: 6px 8px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #1E293B !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    text-align: center !important;
    white-space: nowrap !important;
    line-height: 1.3 !important;
}

.fotg-time-period:hover {
    background: #E8FFFE !important;
    color: #1E293B !important;
    border-color: #B8F4F1 !important;
}

.fotg-time-period.active {
    background: #1E293B !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    border-color: #1E293B !important;
}

/* Time Grid */
.fotg-time-grid {
    padding: 10px !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #CBD5E1 transparent !important;
    background: #FFFFFF !important;
}

.fotg-time-grid::-webkit-scrollbar {
    width: 4px !important;
}

.fotg-time-grid::-webkit-scrollbar-track {
    background: transparent !important;
}

.fotg-time-grid::-webkit-scrollbar-thumb {
    background-color: #CBD5E1 !important;
    border-radius: 4px !important;
}

.fotg-time-period-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 4px !important;
}

.fotg-time-period-grid[style*="display:none"],
.fotg-time-period-grid[style*="display: none"] {
    display: none !important;
}

.fotg-time-option {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 4px !important;
    border: 1px solid transparent !important;
    background: #FFFFFF !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1E293B !important;
    cursor: pointer !important;
    transition: all 0.12s ease !important;
    text-align: center !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.fotg-time-option:hover {
    background: #E8FFFE !important;
    border-color: #B8F4F1 !important;
    color: #1E293B !important;
}

.fotg-time-option:focus-visible {
    outline: 2px solid #B8F4F1 !important;
    outline-offset: -2px !important;
}

.fotg-time-option.selected {
    background: #B8F4F1 !important;
    color: #1E293B !important;
    font-weight: 600 !important;
    border-color: #9AE5E1 !important;
}

/* Error state */
.fotg-time-trigger.fotg-field-error {
    border-color: #FCA5A5 !important;
    box-shadow: 0 0 0 3px rgba(252, 165, 165, 0.2) !important;
}

/* Non-elementor template compatibility */
.fotg-datetime-field .fotg-time-trigger {
    padding: 0;
    border: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
    height: auto;
    min-height: auto;
}

.fotg-datetime-field .fotg-time-trigger:focus {
    box-shadow: none;
    border: none;
}

.fotg-datetime-field .fotg-time-trigger[aria-expanded="true"] {
    box-shadow: none;
    border: none;
}

.fotg-datetime-field .fotg-time-dropdown {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-8px) !important;
    min-width: 300px !important;
}

.fotg-datetime-field .fotg-time-dropdown.fotg-open {
    transform: translateX(-50%) translateY(0) !important;
}

/* ==========================================================================
   Counters Row
   ========================================================================== */
.fotg-counters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.fotg-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 10px 12px;
    gap: 4px;
}

.fotg-counter-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background: #fff;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.fotg-counter-btn:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    color: #374151;
}

.fotg-counter-btn:active {
    transform: scale(0.98);
}

.fotg-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.fotg-counter-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.fotg-counter-value {
    min-width: 48px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

/* ==========================================================================
   Submit Button (Isolated from theme)
   ========================================================================== */
.fotg-booking-widget .fotg-submit-btn,
.fotg-booking-details-wrap .fotg-submit-btn,
button.fotg-submit-btn {
    width: 100% !important;
    padding: 18px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: var(--fotg-cta) !important;
    border: 2px solid var(--fotg-cta) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    outline: none !important;
}

.fotg-booking-widget .fotg-submit-btn:hover,
.fotg-booking-details-wrap .fotg-submit-btn:hover,
button.fotg-submit-btn:hover {
    background: var(--fotg-cta-hover) !important;
    border-color: var(--fotg-cta-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4) !important;
    color: #fff !important;
}

.fotg-booking-widget .fotg-submit-btn:active,
.fotg-booking-details-wrap .fotg-submit-btn:active,
button.fotg-submit-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3) !important;
}

.fotg-booking-widget .fotg-submit-btn:disabled,
.fotg-booking-details-wrap .fotg-submit-btn:disabled,
button.fotg-submit-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.fotg-btn-loader {
    display: flex;
    align-items: center;
}

.fotg-spinner {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Social Proof
   ========================================================================== */
.fotg-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    margin-top: 20px;
    background: #F0FDF4;
    border-radius: var(--fotg-radius-sm);
    font-size: 14px;
    color: #166534;
}

.fotg-social-proof-icon {
    display: flex;
    align-items: center;
}

.fotg-social-proof-icon svg {
    width: 20px;
    height: 20px;
    color: #22C55E;
}

.fotg-social-proof-text strong {
    font-weight: 700;
}

/* Social Proof Card - Welcome Pickups Style */
.fotg-social-proof-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-top: 16px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: var(--fotg-text);
}

.fotg-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.1) 0%, rgba(74, 59, 107, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fotg-social-icon svg {
    color: var(--fotg-secondary);
}

.fotg-social-proof-card .fotg-social-text {
    color: var(--fotg-text-light);
    line-height: 1.4;
}

.fotg-social-proof-card .fotg-social-text strong {
    color: var(--fotg-text);
    font-weight: 600;
}

/* Dynamic City Name in Hero */
.fotg-city-name-dynamic {
    display: inline;
}

/* ==========================================================================
   Step 2: Booking Details Page
   ========================================================================== */
.fotg-booking-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Progress Bar */
.fotg-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: var(--fotg-radius);
    box-shadow: var(--fotg-shadow);
}

.fotg-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text-light);
}

.fotg-progress-step.active {
    color: var(--fotg-text);
}

.fotg-progress-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--fotg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.fotg-progress-step.active .fotg-progress-number {
    background: var(--fotg-primary);
    color: #fff;
}

.fotg-progress-line {
    width: 60px;
    height: 2px;
    background: var(--fotg-border);
}

/* Trust Badges */
.fotg-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.fotg-trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border-radius: var(--fotg-radius-sm);
    box-shadow: var(--fotg-shadow);
}

.fotg-trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--fotg-primary), #16A085);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fotg-trust-badge-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.fotg-trust-badge-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 4px 0;
}

.fotg-trust-badge-content p {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin: 0;
}

/* Two Column Layout */
.fotg-booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Details Form */
.fotg-details-form {
    background: #fff;
    border-radius: var(--fotg-radius);
    padding: 32px;
    box-shadow: var(--fotg-shadow);
}

.fotg-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--fotg-border);
}

/* Radio Buttons */
.fotg-radio-group {
    margin-bottom: 24px;
}

.fotg-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--fotg-input-bg);
    border: 2px solid var(--fotg-border);
    border-radius: var(--fotg-radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--fotg-transition);
}

.fotg-radio-option:hover {
    border-color: var(--fotg-primary);
}

.fotg-radio-option.selected {
    border-color: var(--fotg-primary);
    background: rgba(26, 188, 156, 0.05);
}

.fotg-radio-option input[type="radio"] {
    display: none;
}

.fotg-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--fotg-border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.fotg-radio-option.selected .fotg-radio-custom {
    border-color: var(--fotg-primary);
}

.fotg-radio-option.selected .fotg-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--fotg-primary);
    border-radius: 50%;
}

.fotg-radio-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--fotg-text);
}

/* Phone Input */
.fotg-phone-input {
    display: flex;
    gap: 10px;
}

.fotg-country-select {
    width: 100px;
    flex-shrink: 0;
}

/* Checkbox */
.fotg-checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.fotg-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--fotg-primary);
    cursor: pointer;
}

.fotg-checkbox-label {
    font-size: 14px;
    color: var(--fotg-text-light);
    cursor: pointer;
}

/* Expandable Section */
.fotg-expand-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--fotg-input-bg);
    border: 1px solid var(--fotg-border);
    border-radius: var(--fotg-radius-sm);
    cursor: pointer;
    transition: var(--fotg-transition);
    margin-bottom: 10px;
}

.fotg-expand-trigger:hover {
    background: #EEF2F6;
}

.fotg-expand-trigger.active {
    background: rgba(26, 188, 156, 0.05);
    border-color: var(--fotg-primary);
}

.fotg-expand-content {
    display: none;
    padding: 16px;
    background: var(--fotg-input-bg);
    border-radius: var(--fotg-radius-sm);
    margin-top: -5px;
    margin-bottom: 10px;
}

.fotg-expand-content.visible {
    display: block;
}

/* ==========================================================================
   Order Summary Sidebar
   ========================================================================== */
.fotg-order-summary {
    background: #fff;
    border-radius: var(--fotg-radius);
    overflow: hidden;
    box-shadow: var(--fotg-shadow);
    position: sticky;
    top: 100px;
}

.fotg-summary-header {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.fotg-summary-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.fotg-summary-header span {
    position: relative;
    z-index: 1;
}

.fotg-summary-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fotg-summary-city {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.fotg-summary-body {
    padding: 24px;
}

/* Trip Details */
.fotg-trip-details {
    margin-bottom: 24px;
}

.fotg-trip-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fotg-trip-date-text {
    font-weight: 600;
    color: var(--fotg-text);
}

.fotg-trip-edit {
    font-size: 14px;
    color: var(--fotg-primary);
    text-decoration: none;
    font-weight: 500;
}

.fotg-trip-edit:hover {
    text-decoration: underline;
}

/* Route Display */
.fotg-route-display {
    position: relative;
    padding-left: 30px;
}

.fotg-route-display::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--fotg-border) 0,
        var(--fotg-border) 4px,
        transparent 4px,
        transparent 8px
    );
}

.fotg-route-point {
    position: relative;
    margin-bottom: 20px;
}

.fotg-route-point:last-child {
    margin-bottom: 0;
}

.fotg-route-marker {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 16px;
    height: 16px;
}

.fotg-route-marker.from {
    color: var(--fotg-primary);
}

.fotg-route-marker.to {
    color: var(--fotg-accent);
}

.fotg-route-address {
    font-size: 14px;
    color: var(--fotg-text);
    line-height: 1.4;
}

.fotg-route-time {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin-top: 4px;
}

/* Vehicle Info */
.fotg-vehicle-info {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--fotg-border);
    border-bottom: 1px solid var(--fotg-border);
    margin-bottom: 20px;
}

.fotg-vehicle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--fotg-text-light);
}

.fotg-vehicle-item svg {
    width: 18px;
    height: 18px;
    color: var(--fotg-text-light);
}

/* Total Price */
.fotg-total-price {
    text-align: center;
    padding: 20px 0;
}

.fotg-price-label {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin-bottom: 4px;
}

.fotg-price-note {
    font-size: 12px;
    color: var(--fotg-text-light);
}

.fotg-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--fotg-text);
}

/* Benefits */
.fotg-benefits {
    background: var(--fotg-input-bg);
    border-radius: var(--fotg-radius-sm);
    padding: 20px;
    margin-top: 20px;
}

.fotg-benefits-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    margin-bottom: 14px;
}

.fotg-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--fotg-text-light);
    margin-bottom: 10px;
}

.fotg-benefit-item:last-child {
    margin-bottom: 0;
}

.fotg-benefit-item svg {
    width: 16px;
    height: 16px;
    color: var(--fotg-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Route Map */
.fotg-route-map-wrap {
    margin-top: 20px;
    border-radius: var(--fotg-radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--fotg-border);
}

.fotg-route-map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--fotg-border);
    font-size: 14px;
    font-weight: 600;
    color: var(--fotg-text);
}

.fotg-route-map-header svg {
    width: 18px;
    height: 18px;
    color: var(--fotg-primary-dark);
}

.fotg-route-map {
    overflow: hidden;
    height: 200px;
    background: var(--fotg-input-bg);
}

.fotg-route-map iframe,
.fotg-route-map img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.fotg-route-map.leaflet-container {
    z-index: 1;
}

.fotg-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--fotg-text-light);
    font-size: 14px;
}

.fotg-map-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 14px 16px;
    background: var(--fotg-input-bg);
    font-size: 14px;
    color: var(--fotg-text-light);
    border-radius: 0 0 var(--fotg-radius-sm) var(--fotg-radius-sm);
}

.fotg-map-info strong {
    color: var(--fotg-text);
    font-weight: 600;
}

/* Leaflet Map Custom Markers */
.fotg-map-marker {
    background: none !important;
    border: none !important;
}

.fotg-marker-pickup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotg-marker-pickup .fotg-marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.5), 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
}

.fotg-marker-pickup .fotg-marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.fotg-marker-dropoff {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotg-marker-dropoff svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 3px 8px rgba(239, 68, 68, 0.5));
}

/* Enhanced marker icons with labels */
.fotg-marker-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}

.fotg-marker-pickup .fotg-marker-label {
    color: #059669;
}

.fotg-marker-dropoff .fotg-marker-label {
    color: #DC2626;
}

.fotg-static-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Payment Section
   ========================================================================== */
.fotg-payment-section {
    background: #fff;
    border-radius: var(--fotg-radius);
    padding: 32px;
    box-shadow: var(--fotg-shadow);
    margin-top: 30px;
}

.fotg-payment-form {
    max-width: 500px;
}

#fotg-card-container {
    min-height: 90px;
}

/* ==========================================================================
   Confirmation Page
   ========================================================================== */
.fotg-confirmation-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.fotg-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fotg-primary), #16A085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.fotg-success-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.fotg-confirmation-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--fotg-text);
    margin-bottom: 12px;
}

.fotg-confirmation-number {
    font-size: 18px;
    color: var(--fotg-text-light);
    margin-bottom: 40px;
}

.fotg-confirmation-number strong {
    color: var(--fotg-primary);
    font-family: monospace;
    font-size: 20px;
}

.fotg-confirmation-card {
    background: #fff;
    border-radius: var(--fotg-radius);
    padding: 32px;
    box-shadow: var(--fotg-shadow);
    text-align: left;
    margin-bottom: 30px;
}

.fotg-confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================================================
   Loading States
   ========================================================================== */
.fotg-loading {
    position: relative;
    pointer-events: none;
}

.fotg-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Error States
   ========================================================================== */
.fotg-error-message {
    background: #FEE2E2;
    color: #991B1B;
    padding: 14px 16px;
    border-radius: var(--fotg-radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fotg-field-error {
    border-color: var(--fotg-accent) !important;
}

.fotg-field-error-message {
    font-size: 12px;
    color: var(--fotg-accent);
    margin-top: 6px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .fotg-hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
    }
    
    .fotg-hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .fotg-booking-card {
        margin-left: 0;
    }
    
    .fotg-booking-layout {
        grid-template-columns: 1fr;
    }
    
    .fotg-order-summary {
        position: static;
    }
    
    .fotg-trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fotg-hero-heading {
        font-size: 32px;
    }
    
    .fotg-booking-card {
        padding: 24px;
    }
    
    .fotg-datetime-row,
    .fotg-counters-row {
        grid-template-columns: 1fr;
    }
    
    .fotg-progress-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .fotg-progress-line {
        width: 2px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .fotg-hero-section {
        min-height: auto;
        padding: 30px 16px;
    }
    
    .fotg-hero-heading {
        font-size: 26px;
    }
    
    .fotg-booking-card {
        padding: 20px;
        width: 100%;
    }
    
    .fotg-confirmation-actions {
        flex-direction: column;
    }
    
    .fotg-confirmation-actions .fotg-submit-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Tourist Destinations Section
   ========================================================================== */
.fotg-destinations-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.fotg-destinations-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--fotg-text);
    margin: 0 0 12px 0;
}

.fotg-destinations-subtitle {
    font-size: 16px;
    color: var(--fotg-text-light);
    margin: 0 0 24px 0;
}

.fotg-destinations-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fotg-dest-tab {
    padding: 10px 20px;
    background: var(--fotg-input-bg);
    border: 1px solid var(--fotg-border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    cursor: pointer;
    transition: var(--fotg-transition);
}

.fotg-dest-tab:hover {
    border-color: var(--fotg-primary);
    color: var(--fotg-primary);
}

.fotg-dest-tab.active {
    background: var(--fotg-secondary) !important;
    border-color: var(--fotg-secondary) !important;
    color: #fff !important;
}

.fotg-destinations-wrapper {
    position: relative;
    padding: 0 50px;
}

.fotg-destinations-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.fotg-destination-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    background: #fff;
    border-radius: var(--fotg-radius);
    overflow: hidden;
    box-shadow: var(--fotg-shadow);
    transition: var(--fotg-transition);
}

.fotg-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fotg-shadow-lg);
}

.fotg-destination-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fotg-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.fotg-destination-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fotg-primary), var(--fotg-secondary));
    color: rgba(255, 255, 255, 0.4);
}

.fotg-destination-placeholder svg {
    width: 48px;
    height: 48px;
}

.fotg-destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.fotg-destination-city {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fotg-destination-info {
    padding: 16px;
}

.fotg-destination-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 6px 0;
}

.fotg-destination-desc {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Destination card as clickable link */
a.fotg-destination-card.fotg-destination-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.fotg-destination-card.fotg-destination-link:hover {
    text-decoration: none;
}

/* Book Transfer button on destination cards */
.fotg-destination-book-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--fotg-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--fotg-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a.fotg-destination-card:hover .fotg-destination-book-btn {
    background: var(--fotg-secondary);
    transform: scale(1.05);
}

/* Navigation arrows */
.fotg-dest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--fotg-border);
    color: var(--fotg-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--fotg-shadow);
    transition: var(--fotg-transition);
    z-index: 10;
}

.fotg-dest-nav:hover:not(:disabled) {
    background: var(--fotg-primary);
    border-color: var(--fotg-primary);
    color: #fff;
}

.fotg-dest-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.fotg-dest-nav svg {
    width: 20px;
    height: 20px;
}

.fotg-dest-nav-prev {
    left: 0;
}

.fotg-dest-nav-next {
    right: 0;
}

/* Dots navigation */
.fotg-destinations-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.fotg-dest-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fotg-border);
    cursor: pointer;
    transition: var(--fotg-transition);
}

.fotg-dest-dot:hover {
    background: var(--fotg-text-light);
}

.fotg-dest-dot.active {
    background: var(--fotg-primary);
    transform: scale(1.2);
}

/* Responsive destination cards */
@media (max-width: 1024px) {
    .fotg-destination-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }

    .fotg-destinations-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .fotg-destination-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .fotg-destinations-title {
        font-size: 28px;
    }

    .fotg-destinations-wrapper {
        padding: 0 30px;
    }

    .fotg-dest-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .fotg-destination-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .fotg-destinations-section {
        padding: 40px 16px;
    }

    .fotg-destinations-tabs {
        gap: 6px;
    }

    .fotg-dest-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Location Suggestions Dropdown (Welcome Pickups Style)
   ========================================================================== */
.fotg-location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fotg-border);
    z-index: 1000;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 4px;
}

.fotg-location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--fotg-border);
    transition: var(--fotg-transition);
}

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

.fotg-location-item:hover {
    background: #F8FAFC;
}

.fotg-location-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fotg-text-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.fotg-location-icon svg {
    width: 20px;
    height: 20px;
}

.fotg-location-icon.airport svg {
    color: #5B7B7A;
}

.fotg-location-icon.port svg {
    color: #3B82F6;
}

.fotg-location-icon.station svg {
    color: #8B5CF6;
}

.fotg-location-icon.bus svg {
    color: #F59E0B;
}

.fotg-location-content {
    flex: 1;
    min-width: 0;
}

.fotg-location-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 2px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fotg-location-code {
    font-size: 13px;
    color: var(--fotg-text-light);
    font-weight: 500;
}

.fotg-location-address {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Airport suggestion badges */
.fotg-airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fotg-border);
    z-index: 1000;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 4px;
}

.fotg-airport-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--fotg-border);
    transition: var(--fotg-transition);
}

.fotg-airport-option:last-child {
    border-bottom: none;
}

.fotg-airport-option:hover {
    background: #F8FAFC;
}

.fotg-airport-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fotg-accent);
    font-size: 18px;
    flex-shrink: 0;
}

.fotg-airport-info {
    flex: 1;
    min-width: 0;
}

.fotg-airport-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    margin-bottom: 2px;
}

.fotg-airport-address {
    display: block;
    font-size: 13px;
    color: var(--fotg-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Google Places Autocomplete Styling
   ========================================================================== */
.pac-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fotg-border);
    margin-top: 4px;
    z-index: 10000;
    padding: 8px 0;
}

.pac-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--fotg-border);
    cursor: pointer;
    line-height: 1.4;
}

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

.pac-item:hover {
    background: #F8FAFC;
}

.pac-item-query {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
}

.pac-item-query + span {
    font-size: 13px;
    color: var(--fotg-text-light);
}

.pac-matched {
    font-weight: 700;
    color: var(--fotg-secondary);
}

.pac-icon {
    display: none;
}

/* ==========================================================================
   Flatpickr Styling (Welcome Pickups Reference Design)
   ========================================================================== */
.flatpickr-calendar {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    background: #fff;
    width: auto !important;
    padding: 24px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    display: none;
}

/* Months container - side by side */
.flatpickr-months {
    padding: 0 0 20px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.flatpickr-months .flatpickr-month {
    flex: 0 1 auto;
    height: auto;
    position: static;
    overflow: visible;
}

.flatpickr-month {
    color: var(--fotg-text);
    background: transparent;
}

.flatpickr-current-month {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    padding: 0;
    position: static;
    width: auto;
    left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600;
    background: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
}

.flatpickr-current-month input.cur-year {
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.flatpickr-current-month .numInputWrapper {
    width: auto;
}

.flatpickr-current-month .numInputWrapper span {
    display: none;
}

/* Navigation arrows - circular with border */
.flatpickr-prev-month,
.flatpickr-next-month {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    background: #fff;
    position: static;
    top: auto;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 12px;
    height: 12px;
    fill: #64748B;
}

/* Weekday headers */
.flatpickr-weekdays {
    padding: 0;
    margin-bottom: 8px;
    height: auto;
}

.flatpickr-weekdaycontainer {
    display: flex;
    justify-content: space-around;
}

span.flatpickr-weekday {
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
    background: transparent;
}

/* Day cells container */
.flatpickr-days {
    padding: 0;
    width: auto !important;
}

.flatpickr-innerContainer {
    display: flex;
    gap: 40px;
}

.flatpickr-rContainer {
    display: flex;
    flex-direction: column;
}

.dayContainer {
    min-width: 252px;
    max-width: 252px;
    width: 252px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Day cells - clean minimal style */
.flatpickr-day {
    border-radius: 50%;
    font-weight: 400;
    font-size: 14px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    max-width: 36px;
    color: #334155;
    margin: 0;
    border: 2px solid transparent;
    flex-basis: 14.285%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Disabled/other month days */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #CBD5E1;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #CBD5E1;
    visibility: hidden;
}

/* Selected day - teal border ring like reference */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: transparent;
    border: 2px solid var(--fotg-primary);
    color: var(--fotg-primary-dark);
    font-weight: 600;
}

/* Hover state */
.flatpickr-day:hover:not(.selected):not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay) {
    background: #F1F5F9;
    border-color: transparent;
}

/* Today indicator */
.flatpickr-day.today {
    border-color: transparent;
    background: transparent;
}

.flatpickr-day.today:not(.selected) {
    color: var(--fotg-primary-dark);
    font-weight: 600;
}

.flatpickr-day.today.selected {
    background: transparent;
    border: 2px solid var(--fotg-primary);
}

/* Multi-month layout adjustments */
.flatpickr-calendar.multiMonth {
    padding: 24px 28px;
}

.flatpickr-calendar.multiMonth .flatpickr-months {
    position: relative;
}

.flatpickr-calendar.multiMonth .flatpickr-months .flatpickr-prev-month {
    position: absolute;
    left: 0;
}

.flatpickr-calendar.multiMonth .flatpickr-months .flatpickr-next-month {
    position: absolute;
    right: 0;
}

/* Two month separator - vertical line */
.flatpickr-calendar.multiMonth .flatpickr-innerContainer {
    position: relative;
}

.flatpickr-calendar.multiMonth .flatpickr-rContainer:first-child {
    position: relative;
}

.flatpickr-calendar.multiMonth .flatpickr-rContainer:first-child::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E2E8F0;
}

/* Time input styling */
.flatpickr-time {
    padding: 16px 0 0;
    border-top: 1px solid #E2E8F0;
    margin-top: 16px;
}

.flatpickr-time input {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive - stack months on mobile */
@media (max-width: 700px) {
    .flatpickr-calendar {
        padding: 16px;
    }

    .flatpickr-calendar.multiMonth {
        padding: 16px;
    }

    .flatpickr-innerContainer {
        flex-direction: column;
        gap: 24px;
    }

    .flatpickr-calendar.multiMonth .flatpickr-rContainer:first-child::after {
        display: none;
    }

    .flatpickr-calendar.multiMonth .flatpickr-rContainer:nth-child(2) {
        border-top: 1px solid #E2E8F0;
        padding-top: 16px;
    }

    .dayContainer {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .flatpickr-day {
        flex-basis: 14.285%;
        max-width: none;
        width: auto;
        height: 40px;
        line-height: 40px;
    }

    .flatpickr-months .flatpickr-prev-month,
    .flatpickr-months .flatpickr-next-month {
        position: static !important;
    }
}

/* ==========================================================================
   intl-tel-input Styling
   ========================================================================== */
.iti {
    width: 100%;
}

.iti__flag-container {
    padding-left: 12px;
}

.iti__selected-flag {
    background: transparent !important;
    padding: 0 8px 0 0;
    margin-right: 8px;
    border-right: 1px solid var(--fotg-border);
}

.iti__selected-dial-code {
    margin-left: 8px;
    color: var(--fotg-text);
    font-weight: 500;
}

/* Add gap between flag/dial code and input text */
.iti input.fotg-input-field,
.iti input.fotg-phone-number {
    padding-left: 100px !important;
}

/* For separated dial code style */
.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}

.iti--separate-dial-code input.fotg-input-field,
.iti--separate-dial-code input.fotg-phone-number {
    padding-left: 110px !important;
}

.iti__country-list {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--fotg-border);
    margin-top: 4px;
}

.iti__country {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.iti__country:hover {
    background: var(--fotg-input-bg);
}

.iti__country-name {
    font-weight: 500;
    color: var(--fotg-text);
}

.iti__dial-code {
    color: var(--fotg-text-light);
}

.iti__flag {
    margin-right: 0;
}

/* Dropdown arrow styling */
.iti__arrow {
    margin-left: 8px;
    border-top-color: var(--fotg-text-light);
}

.iti__arrow--up {
    border-bottom-color: var(--fotg-text-light);
}

/* ==========================================================================
   Simple Widget Styles (Form Only, No Hero)
   ========================================================================== */
.fotg-simple-widget {
    max-width: 500px;
    margin: 0 auto;
}

.fotg-simple-widget .fotg-booking-card {
    background: #fff;
    border-radius: var(--fotg-radius);
    padding: 32px;
    box-shadow: var(--fotg-shadow-lg);
}

.fotg-city-selector-standalone {
    margin-bottom: 20px;
}

.fotg-city-selector-standalone select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--fotg-border);
    border-radius: var(--fotg-radius-sm);
    font-size: 15px;
    background: #fff;
    cursor: pointer;
}

/* ==========================================================================
   Booking Details Widget Styles (Step 2)
   ========================================================================== */
.fotg-booking-details-wrap {
    background: var(--fotg-input-bg);
    padding: 40px 20px;
    min-height: 100vh;
}

.fotg-page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--fotg-text);
    text-align: center;
    margin-bottom: 32px;
}

/* Progress Steps */
.fotg-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.fotg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fotg-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--fotg-border);
    color: var(--fotg-text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.fotg-step.active .fotg-step-number {
    background: var(--fotg-secondary) !important;
    color: #fff !important;
}

.fotg-step.completed .fotg-step-number {
    background: var(--fotg-cta) !important;
    color: #fff !important;
}

.fotg-step.completed .fotg-step-number svg {
    width: 18px;
    height: 18px;
}

.fotg-step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--fotg-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fotg-step.active .fotg-step-label {
    color: var(--fotg-text);
}

.fotg-step-line {
    flex: 1;
    height: 2px;
    background: var(--fotg-border);
    margin: 0 12px;
    margin-bottom: 28px;
}

.fotg-step-line.active {
    background: var(--fotg-cta) !important;
}

/* Trust Badges Horizontal */
.fotg-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.fotg-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: var(--fotg-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fotg-trust-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--fotg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fotg-trust-badge-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--fotg-text);
}

.fotg-trust-badge-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 2px;
}

.fotg-trust-badge-content p {
    font-size: 12px;
    color: var(--fotg-text-light);
    margin: 0;
}

/* Two Column Layout */
.fotg-booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.fotg-details-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fotg-summary-column {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Form Sections */
.fotg-form-section {
    background: #fff;
    border-radius: var(--fotg-radius);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fotg-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0 0 20px;
}

.fotg-section-title svg {
    color: var(--fotg-accent);
}

.fotg-subsection-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 20px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--fotg-border);
}

/* Form Rows */
.fotg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fotg-form-half {
    width: 100%;
}

/* Additional Options */
.fotg-additional-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--fotg-border);
}

.fotg-expand-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    cursor: pointer;
}

.fotg-expand-trigger input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--fotg-primary);
}

.fotg-option-label {
    font-size: 14px;
    color: var(--fotg-text);
}

.fotg-expand-content {
    display: none;
    padding: 0 0 16px 28px;
}

.fotg-expand-trigger input:checked ~ + .fotg-expand-content,
.fotg-expand-trigger:has(input:checked) + .fotg-expand-content {
    display: block;
}

/* Continue Button */
.fotg-continue-btn {
    margin-top: 24px;
}

/* Order Summary */
.fotg-order-summary {
    background: #fff;
    border-radius: var(--fotg-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fotg-summary-header {
    position: relative;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--fotg-secondary), #3D5A6E);
    background-size: cover;
    background-position: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background-image 0.4s ease;
}

.fotg-summary-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.fotg-summary-label,
.fotg-summary-city {
    position: relative;
    z-index: 1;
    color: #fff;
}

.fotg-summary-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 6px;
    font-weight: 500;
}

.fotg-summary-city {
    display: block;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.fotg-summary-body {
    padding: 24px;
}

/* Trip Details in Summary */
.fotg-trip-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fotg-border);
}

.fotg-trip-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fotg-trip-date-text {
    font-weight: 600;
    color: var(--fotg-text);
}

.fotg-trip-edit {
    font-size: 13px;
    color: var(--fotg-accent);
    text-decoration: none;
}

.fotg-trip-edit:hover {
    text-decoration: underline;
}

.fotg-route-display {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding-left: 12px;
}

/* Connecting line between pickup and dropoff markers */
.fotg-route-display::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--fotg-border) 0,
        var(--fotg-border) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 0;
}

.fotg-route-point {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fotg-route-marker {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
}

.fotg-route-marker.from {
    color: var(--fotg-primary);
}

.fotg-route-marker.to {
    color: var(--fotg-accent);
}

.fotg-route-address {
    font-size: 14px;
    color: var(--fotg-text);
    margin: 0;
}

.fotg-route-time {
    font-size: 12px;
    color: var(--fotg-text-light);
    margin: 4px 0 0;
}

/* Vehicle Info */
.fotg-vehicle-info {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--fotg-border);
}

.fotg-vehicle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fotg-text-light);
}

.fotg-vehicle-item svg {
    color: var(--fotg-accent);
}

/* Total Price */
.fotg-total-price {
    padding: 20px 0;
    text-align: center;
}

.fotg-price-label {
    font-size: 13px;
    color: var(--fotg-text-light);
    margin: 0 0 4px;
}

.fotg-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--fotg-text);
    margin: 0 0 4px;
}

.fotg-price-note {
    font-size: 12px;
    color: var(--fotg-text-light);
    margin: 0;
}

/* Payment Section */
.fotg-pay-btn {
    width: 100%;
    background: var(--fotg-primary);
    font-size: 16px;
    font-weight: 600;
}

.fotg-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--fotg-text-light);
}

.fotg-secure-badge svg {
    color: #22C55E;
}

/* Responsive for Booking Details */
@media (max-width: 1024px) {
    .fotg-booking-layout {
        grid-template-columns: 1fr;
    }

    .fotg-summary-column {
        position: static;
        order: -1;
    }

    .fotg-order-summary {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .fotg-booking-details-wrap {
        padding: 20px 16px;
    }

    .fotg-page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .fotg-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .fotg-trust-badge {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .fotg-form-row {
        grid-template-columns: 1fr;
    }

    .fotg-progress-steps {
        margin-bottom: 24px;
    }

    .fotg-step-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .fotg-form-section {
        padding: 20px 16px;
    }

    .fotg-summary-body {
        padding: 16px;
    }
}

/* ==========================================================================
   Destinations Widget (Elementor) - Welcome Pickups Style
   ========================================================================== */
.fotg-destinations-section {
    width: 100%;
}

.fotg-destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.fotg-destinations-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 32px;
    font-weight: 700;
    color: var(--fotg-text);
    margin: 0;
}

.fotg-destinations-count {
    font-weight: 700;
}

.fotg-all-destinations-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid var(--fotg-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fotg-all-destinations-btn:hover {
    border-color: var(--fotg-primary);
    background: var(--fotg-input-bg);
}

/* Destinations Grid */
.fotg-destinations-grid {
    display: grid;
    gap: 16px;
}

.fotg-destinations-grid.fotg-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fotg-destinations-grid.fotg-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fotg-destinations-grid.fotg-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.fotg-destinations-grid.fotg-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Destination Card */
.fotg-destination-card {
    position: relative;
    display: block;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2C3E50;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotg-destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.fotg-destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.3s ease;
}

.fotg-destination-card:hover .fotg-destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.fotg-destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.fotg-destination-country {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.fotg-destination-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* No Destinations Message */
.fotg-no-destinations {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: var(--fotg-input-bg);
    border-radius: 12px;
    color: var(--fotg-text-light);
}

/* ==========================================================================
   All Destinations Modal
   ========================================================================== */
.fotg-destinations-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fotg-destinations-modal-content {
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.fotg-destinations-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--fotg-border);
    background: #fff;
}

.fotg-destinations-search-wrap {
    flex: 1;
    position: relative;
}

.fotg-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--fotg-text-light);
    pointer-events: none;
}

.fotg-destinations-search {
    width: 100%;
    padding: 14px 14px 14px 46px;
    font-size: 16px;
    border: 2px solid var(--fotg-border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
}

.fotg-destinations-search:focus {
    border-color: var(--fotg-primary);
}

.fotg-destinations-search::placeholder {
    color: var(--fotg-text-light);
}

.fotg-modal-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--fotg-input-bg);
    border-radius: 50%;
    font-size: 24px;
    color: var(--fotg-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.fotg-modal-close-btn:hover {
    background: var(--fotg-border);
    color: var(--fotg-text);
}

.fotg-destinations-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.fotg-destinations-list {
    display: flex;
    flex-direction: column;
}

.fotg-destination-list-item {
    display: block;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--fotg-text);
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--fotg-border);
}

.fotg-destination-list-item:last-child {
    border-bottom: none;
}

.fotg-destination-list-item:hover {
    background: var(--fotg-input-bg);
}

.fotg-dest-city {
    font-size: 15px;
    font-weight: 600;
    color: var(--fotg-text);
}

.fotg-dest-country {
    font-size: 15px;
    color: var(--fotg-text-light);
}

/* Modal Open State */
body.fotg-modal-open {
    overflow: hidden;
}

/* Responsive Destinations Grid */
@media (max-width: 1200px) {
    .fotg-destinations-grid.fotg-cols-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .fotg-destinations-grid.fotg-cols-4,
    .fotg-destinations-grid.fotg-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .fotg-destinations-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .fotg-destinations-grid.fotg-cols-3,
    .fotg-destinations-grid.fotg-cols-4,
    .fotg-destinations-grid.fotg-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .fotg-destinations-title {
        font-size: 26px;
    }

    .fotg-destination-card {
        height: 180px;
    }

    .fotg-destination-name {
        font-size: 18px;
    }

    .fotg-destinations-modal-content {
        max-height: 90vh;
        margin: 0;
        border-radius: 16px 16px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .fotg-destinations-grid.fotg-cols-2,
    .fotg-destinations-grid.fotg-cols-3,
    .fotg-destinations-grid.fotg-cols-4,
    .fotg-destinations-grid.fotg-cols-5 {
        grid-template-columns: 1fr;
    }

    .fotg-destination-card {
        height: 200px;
    }

    .fotg-destinations-modal-header {
        padding: 16px;
    }

    .fotg-destination-list-item {
        padding: 12px 16px;
    }
}

/* ==========================================================================
   Welcome Pickups Style - Modern Booking Form
   ========================================================================== */

.fotg-welcome-style {
    background: #f8fafc;
}

/* Hero Section - Welcome Style */
.fotg-welcome-style .fotg-hero-section {
    min-height: 400px;
    padding: 60px 20px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fotg-welcome-style .fotg-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.fotg-welcome-style .fotg-hero-content {
    max-width: 700px;
    padding: 0 20px;
    margin: 0 auto;
}

/* City Badge */
.fotg-city-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.fotg-city-badge .fotg-city-selector {
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 10px 36px 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fotg-city-badge .fotg-city-selector:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fotg-city-badge .fotg-badge-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #fff;
    pointer-events: none;
}

/* Hero Title */
.fotg-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.fotg-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Booking Card Wrapper */
.fotg-booking-card-wrap {
    max-width: 600px;
    margin: -100px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.fotg-welcome-style .fotg-booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 32px;
    position: relative;
}

/* Route Section */
.fotg-welcome-style .fotg-route-section {
    position: relative;
    margin-bottom: 24px;
}

.fotg-route-field {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.fotg-route-field:hover,
.fotg-route-field:focus-within {
    background: #f1f5f9;
}

.fotg-from-field {
    margin-bottom: 8px;
}

.fotg-route-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.fotg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.fotg-dot-green {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.fotg-dot-red {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.fotg-route-input-wrap {
    flex: 1;
    min-width: 0;
}

.fotg-route-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.fotg-route-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    padding: 0;
}

.fotg-route-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Route Line */
.fotg-route-line-vertical {
    position: absolute;
    left: 27px;
    top: 52px;
    width: 2px;
    height: 24px;
    background: repeating-linear-gradient(
        to bottom,
        #cbd5e1 0,
        #cbd5e1 4px,
        transparent 4px,
        transparent 8px
    );
}

/* Airport Dropdown */
.fotg-airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 8px;
}

.fotg-dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.fotg-dropdown-header svg {
    color: var(--fotg-primary);
}

.fotg-airport-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

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

.fotg-airport-item:hover {
    background: #f8fafc;
}

.fotg-airport-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 36px;
    background: linear-gradient(135deg, var(--fotg-primary), var(--fotg-primary-hover));
    color: var(--fotg-secondary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.fotg-airport-details {
    flex: 1;
    min-width: 0;
}

.fotg-airport-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fotg-airport-city {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* Date & Time Section */
.fotg-datetime-section {
    display: flex;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.fotg-datetime-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fotg-datetime-field:hover {
    background: #f1f5f9;
}

.fotg-datetime-divider {
    width: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

.fotg-field-icon {
    width: var(--fotg-field-icon-size, 22px);
    height: var(--fotg-field-icon-size, 22px);
    color: var(--fotg-field-icon-color, #64748b);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fotg-field-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fotg-field-icon i {
    font-size: var(--fotg-field-icon-size, 22px);
    color: inherit;
    line-height: 1;
}

/* Date & Time specific icon styling */
.fotg-field-icon-date {
    color: var(--fotg-date-icon-color, var(--fotg-field-icon-color, #64748b));
}

.fotg-field-icon-time {
    color: var(--fotg-time-icon-color, var(--fotg-field-icon-color, #64748b));
}

/* Elementor template date/time icons */
.fotg-input-icon-datetime {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fotg-input-icon-datetime i {
    font-size: inherit;
    color: inherit;
    line-height: 1;
}

.fotg-input-icon-datetime svg {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fotg-field-content {
    flex: 1;
    min-width: 0;
}

.fotg-field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.fotg-field-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.fotg-field-input::placeholder {
    color: #94a3b8;
}

/* Travelers Section */
.fotg-travelers-section {
    display: flex;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.fotg-travelers-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.fotg-travelers-divider {
    width: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

/* Stepper */
.fotg-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fotg-stepper-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.fotg-stepper-btn:hover {
    border-color: var(--fotg-primary);
    color: var(--fotg-primary);
    background: rgba(184, 244, 241, 0.1);
}

.fotg-stepper-btn svg {
    width: 16px;
    height: 16px;
}

.fotg-stepper-value {
    min-width: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Submit Button - Welcome Style */
.fotg-welcome-style .fotg-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.fotg-welcome-style .fotg-submit-btn:hover {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
}

.fotg-btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.fotg-welcome-style .fotg-submit-btn:hover .fotg-btn-arrow {
    transform: translateX(4px);
}

/* Trust Strip */
.fotg-trust-strip {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    margin-top: 8px;
}

.fotg-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.fotg-trust-item svg {
    color: #fbbf24;
}

.fotg-trust-item:nth-child(2) svg {
    color: #22c55e;
}

.fotg-trust-item:nth-child(3) svg {
    color: var(--fotg-primary);
}

/* Social Proof */
.fotg-welcome-style .fotg-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    margin: 0;
}

.fotg-social-avatars {
    display: flex;
}

.fotg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fotg-primary), var(--fotg-primary-hover));
    color: var(--fotg-secondary);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -8px;
}

.fotg-avatar:first-child {
    margin-left: 0;
}

.fotg-social-text {
    font-size: 14px;
    color: #64748b;
}

.fotg-social-text strong {
    color: #1e293b;
}

/* Features Section */
.fotg-features-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.fotg-features-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 40px;
}

.fotg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fotg-feature-card {
    text-align: center;
    padding: 24px 16px;
}

.fotg-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--fotg-primary), var(--fotg-primary-hover));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fotg-secondary);
}

.fotg-feature-icon svg {
    width: 28px;
    height: 28px;
}

.fotg-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
}

.fotg-feature-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive - Welcome Style */
@media (max-width: 768px) {
    .fotg-hero-title {
        font-size: 32px;
    }

    .fotg-hero-subtitle {
        font-size: 16px;
    }

    .fotg-welcome-style .fotg-booking-card {
        padding: 24px;
    }

    .fotg-datetime-section,
    .fotg-travelers-section {
        flex-direction: column;
    }

    .fotg-datetime-divider,
    .fotg-travelers-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .fotg-trust-strip {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .fotg-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .fotg-welcome-style .fotg-hero-section {
        padding: 40px 16px 140px;
        min-height: 350px;
    }

    .fotg-hero-title {
        font-size: 28px;
    }

    .fotg-booking-card-wrap {
        margin-top: -80px;
        padding: 0 16px;
    }

    .fotg-welcome-style .fotg-booking-card {
        padding: 20px;
        border-radius: 16px;
    }

    .fotg-route-field {
        padding: 14px;
    }

    .fotg-features-grid {
        grid-template-columns: 1fr;
    }

    .fotg-feature-card {
        padding: 20px;
    }
}

/* ==========================================================================
   Step 2: Booking Details - Welcome Pickups Style
   ========================================================================== */

/* Progress Steps - Modern Compact Design */
.fotg-welcome-style .fotg-progress-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 20px 32px;
    margin-bottom: 20px;
}

.fotg-welcome-style .fotg-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.fotg-welcome-style .fotg-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fotg-welcome-style .fotg-step-number,
.fotg-welcome-style .fotg-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #E5E7EB;
    color: #6B7280;
    flex-shrink: 0;
}

.fotg-welcome-style .fotg-step.active .fotg-step-number {
    background: linear-gradient(135deg, var(--fotg-primary) 0%, #5B7B7A 100%);
    color: #fff;
}

.fotg-welcome-style .fotg-step.completed .fotg-step-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
}

.fotg-welcome-style .fotg-step.completed .fotg-step-icon svg {
    width: 16px;
    height: 16px;
}

.fotg-welcome-style .fotg-step-label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
}

.fotg-welcome-style .fotg-step.active .fotg-step-label,
.fotg-welcome-style .fotg-step.completed .fotg-step-label {
    color: var(--fotg-text);
    font-weight: 600;
}

.fotg-welcome-style .fotg-step-connector {
    width: 60px;
    height: 2px;
    background: #E5E7EB;
    margin: 0 16px;
}

/* Trust Strip - Compact */
.fotg-trust-strip-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(184, 244, 241, 0.1) 0%, rgba(91, 123, 122, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.fotg-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fotg-text);
}

.fotg-trust-item svg {
    color: var(--fotg-primary-dark);
    flex-shrink: 0;
}

.fotg-trust-divider {
    width: 1px;
    height: 20px;
    background: var(--fotg-border);
}

/* Form Sections */
.fotg-welcome-style .fotg-form-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
}

.fotg-welcome-style .fotg-form-section:last-of-type {
    border-bottom: none;
}

.fotg-welcome-style .fotg-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fotg-welcome-style .fotg-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(184, 244, 241, 0.3) 0%, rgba(184, 244, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fotg-primary-dark);
    flex-shrink: 0;
}

.fotg-welcome-style .fotg-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--fotg-text);
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
}

.fotg-optional-badge {
    font-size: 11px;
    font-weight: 500;
    color: #6B7280;
    background: #F3F4F6;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input with Hint */
.fotg-input-with-hint {
    position: relative;
}

.fotg-input-hint {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-top: 6px;
}

/* Radio Cards */
.fotg-radio-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fotg-radio-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fotg-radio-card:hover {
    border-color: #D1D5DB;
    background: #FAFAFA;
}

.fotg-radio-card.selected {
    border-color: var(--fotg-primary);
    background: linear-gradient(135deg, rgba(184, 244, 241, 0.08) 0%, rgba(184, 244, 241, 0.02) 100%);
}

.fotg-radio-card input[type="radio"] {
    display: none;
}

.fotg-card-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.fotg-card-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    flex: 1;
}

.fotg-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    opacity: 0;
    color: var(--fotg-primary-dark);
    transition: opacity 0.2s ease;
}

.fotg-radio-card.selected .fotg-card-check {
    opacity: 1;
}

/* Form Rows */
.fotg-form-row {
    margin-bottom: 16px;
}

.fotg-form-row:last-child {
    margin-bottom: 0;
}

.fotg-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fotg-welcome-style .fotg-field-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.fotg-welcome-style .fotg-input-field {
    padding: 14px 16px !important;
    font-size: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.fotg-welcome-style .fotg-input-field:focus {
    border-color: var(--fotg-primary);
    box-shadow: 0 0 0 4px rgba(184, 244, 241, 0.2);
}

/* Options Grid */
.fotg-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fotg-option-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.fotg-option-card.fotg-option-full {
    grid-column: 1 / -1;
}

.fotg-option-toggle {
    padding: 14px;
}

.fotg-option-toggle input[type="checkbox"] {
    display: none;
}

.fotg-option-toggle label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.fotg-option-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.fotg-option-info {
    flex: 1;
}

.fotg-option-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
}

.fotg-option-price {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}

.fotg-option-expand {
    display: none;
    padding: 0 14px 14px;
}

.fotg-option-card:has(input:checked) {
    border-color: var(--fotg-primary);
    background: linear-gradient(135deg, rgba(184, 244, 241, 0.05) 0%, transparent 100%);
}

.fotg-option-card:has(input:checked) .fotg-option-expand {
    display: block;
}

.fotg-select-mini {
    padding: 10px 14px;
    font-size: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.fotg-textarea-mini {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    resize: vertical;
    font-family: inherit;
}

/* Consent Checkbox */
.fotg-consent-wrap {
    padding: 16px 0;
    margin-bottom: 24px;
}

.fotg-consent-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #4B5563;
}

.fotg-consent-label input[type="checkbox"] {
    display: none;
}

.fotg-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.fotg-consent-label input:checked + .fotg-checkbox-custom {
    background: var(--fotg-primary);
    border-color: var(--fotg-primary);
}

.fotg-consent-label input:checked + .fotg-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Large Submit Button */
.fotg-btn-large {
    width: 100%;
    padding: 18px 28px !important;
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fotg-btn-arrow {
    transition: transform 0.2s ease;
}

.fotg-btn-large:hover .fotg-btn-arrow {
    transform: translateX(4px);
}

.fotg-btn-pay {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

/* Order Summary - Welcome Style */
.fotg-welcome-style .fotg-order-summary {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fotg-welcome-style .fotg-summary-header {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fotg-welcome-style .fotg-summary-body {
    padding: 20px;
}

/* Trip Card */
.fotg-trip-card {
    background: #F9FAFB;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

.fotg-trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fotg-trip-date-text {
    font-weight: 600;
    color: var(--fotg-text);
    font-size: 14px;
}

.fotg-edit-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fotg-primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.fotg-edit-link:hover {
    color: var(--fotg-primary);
}

/* Route Visual */
.fotg-route-visual {
    position: relative;
}

.fotg-route-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.fotg-point-marker {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fotg-point-marker.fotg-from {
    background: #10B981;
    border-radius: 50%;
}

.fotg-marker-inner {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.fotg-point-marker.fotg-to {
    color: #EF4444;
}

.fotg-point-info {
    flex: 1;
    min-width: 0;
}

.fotg-route-address {
    font-size: 13px;
    color: var(--fotg-text);
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
}

.fotg-route-meta {
    font-size: 12px;
    color: #6B7280;
    margin: 4px 0 0;
}

.fotg-route-line-vertical {
    width: 2px;
    height: 24px;
    background: repeating-linear-gradient(
        to bottom,
        #D1D5DB 0,
        #D1D5DB 4px,
        transparent 4px,
        transparent 8px
    );
    margin: 4px 0 4px 11px;
}

/* Vehicle Strip */
.fotg-vehicle-strip {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 16px;
}

.fotg-vehicle-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4B5563;
}

.fotg-vehicle-badge svg {
    color: #6B7280;
}

/* Price Display */
.fotg-price-display {
    background: linear-gradient(135deg, rgba(184, 244, 241, 0.15) 0%, rgba(184, 244, 241, 0.05) 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.fotg-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fotg-price-row span:first-child {
    font-size: 14px;
    color: var(--fotg-text);
}

.fotg-price-display .fotg-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--fotg-text);
}

.fotg-price-display .fotg-price-note {
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
}

/* Benefits Mini */
.fotg-benefits-mini {
    margin-bottom: 16px;
}

.fotg-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 10px;
}

.fotg-benefit-row:last-child {
    margin-bottom: 0;
}

.fotg-benefit-row svg {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Map Details (Collapsible) */
.fotg-map-details {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}

.fotg-map-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fotg-text);
    cursor: pointer;
    background: #F9FAFB;
    list-style: none;
}

.fotg-map-summary::-webkit-details-marker {
    display: none;
}

.fotg-map-summary svg:first-child {
    color: var(--fotg-primary-dark);
}

.fotg-map-meta {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
}

.fotg-chevron {
    transition: transform 0.2s ease;
    color: #6B7280;
}

.fotg-map-details[open] .fotg-chevron {
    transform: rotate(180deg);
}

.fotg-map-details .fotg-route-map {
    height: 180px;
    border-radius: 0;
}

/* Payment Section Updates */
.fotg-welcome-style .fotg-payment-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-top: 24px;
}

.fotg-welcome-style .fotg-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: #6B7280;
}

.fotg-welcome-style .fotg-secure-badge svg {
    color: #10B981;
}

/* Responsive Design for Step 2 */
@media (max-width: 1024px) {
    .fotg-welcome-style .fotg-booking-layout {
        grid-template-columns: 1fr;
    }

    .fotg-welcome-style .fotg-order-summary {
        position: static;
        order: -1;
        margin-bottom: 24px;
    }

    .fotg-trust-strip-compact {
        flex-wrap: wrap;
        gap: 12px;
    }

    .fotg-trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .fotg-welcome-style .fotg-progress-wrap {
        padding: 16px 20px;
    }

    .fotg-welcome-style .fotg-step-label {
        display: none;
    }

    .fotg-welcome-style .fotg-step-connector {
        width: 40px;
    }

    .fotg-radio-cards {
        grid-template-columns: 1fr;
    }

    .fotg-two-col {
        grid-template-columns: 1fr;
    }

    .fotg-options-grid {
        grid-template-columns: 1fr;
    }

    .fotg-trust-strip-compact {
        padding: 12px 16px;
    }

    .fotg-trust-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fotg-welcome-style .fotg-details-form {
        padding: 20px;
    }

    .fotg-welcome-style .fotg-section-icon {
        width: 36px;
        height: 36px;
    }

    .fotg-welcome-style .fotg-section-title {
        font-size: 15px;
    }

    .fotg-vehicle-strip {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLES - ALL DEVICES
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION RESPONSIVE
   -------------------------------------------------------------------------- */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .fotg-hero-section {
        min-height: 700px !important;
        padding: 80px 60px !important;
    }

    .fotg-hero-title {
        font-size: 52px !important;
        line-height: 1.2 !important;
    }

    .fotg-hero-subtitle {
        font-size: 20px !important;
    }

    .fotg-booking-card {
        max-width: 420px !important;
        padding: 36px !important;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .fotg-hero-section {
        min-height: 650px !important;
        padding: 60px 50px !important;
    }

    .fotg-hero-title {
        font-size: 46px !important;
    }

    .fotg-booking-card {
        max-width: 400px !important;
        padding: 32px !important;
    }
}

/* Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .fotg-hero-section {
        min-height: 600px !important;
        padding: 50px 40px !important;
    }

    .fotg-hero-content {
        gap: 40px !important;
    }

    .fotg-hero-title {
        font-size: 40px !important;
    }

    .fotg-hero-subtitle {
        font-size: 16px !important;
    }

    .fotg-booking-card {
        max-width: 380px !important;
        padding: 28px !important;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .fotg-hero-section {
        min-height: auto !important;
        padding: 40px 30px !important;
    }

    .fotg-hero-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .fotg-hero-text {
        max-width: 100% !important;
        text-align: center !important;
    }

    .fotg-hero-title {
        font-size: 36px !important;
        max-width: 100% !important;
    }

    .fotg-hero-subtitle {
        font-size: 16px !important;
        max-width: 100% !important;
    }

    .fotg-booking-card {
        max-width: 500px !important;
        width: 100% !important;
        padding: 28px !important;
    }

    .fotg-social-proof {
        justify-content: center !important;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .fotg-hero-section {
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    .fotg-hero-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 24px !important;
    }

    .fotg-hero-text {
        max-width: 100% !important;
    }

    .fotg-hero-title {
        font-size: 30px !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
    }

    .fotg-hero-subtitle {
        font-size: 15px !important;
        max-width: 100% !important;
    }

    .fotg-booking-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 24px !important;
        border-radius: 16px !important;
    }

    .fotg-social-proof {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

/* Mobile Large (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .fotg-hero-section {
        min-height: auto !important;
        padding: 24px 16px !important;
    }

    .fotg-hero-content {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .fotg-hero-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .fotg-hero-subtitle {
        font-size: 14px !important;
    }

    .fotg-booking-card {
        padding: 20px !important;
        border-radius: 14px !important;
    }

    .fotg-card-title {
        font-size: 18px !important;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .fotg-hero-section {
        min-height: auto !important;
        padding: 20px 12px !important;
    }

    .fotg-hero-content {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .fotg-hero-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .fotg-hero-subtitle {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .fotg-booking-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .fotg-card-title {
        font-size: 16px !important;
    }

    .fotg-social-proof {
        font-size: 12px !important;
    }
}

/* --------------------------------------------------------------------------
   BOOKING FORM RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet and below */
@media (max-width: 991px) {
    .fotg-route-section {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .fotg-from-group,
    .fotg-to-group {
        width: 100% !important;
    }

    .fotg-route-connector {
        transform: rotate(90deg) !important;
        margin: 8px auto !important;
    }

    .fotg-date-time-row {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .fotg-date-group,
    .fotg-time-group {
        width: 100% !important;
    }

    .fotg-passengers-luggage-row {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .fotg-passengers-group,
    .fotg-luggage-group {
        width: 100% !important;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .fotg-input-field {
        padding: 14px 14px 14px 48px !important;
        font-size: 14px !important;
    }

    .fotg-input-icon {
        left: 14px !important;
        width: 20px !important;
        height: 20px !important;
    }

    .fotg-input-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .fotg-input-icon i {
        font-size: 16px !important;
    }

    .fotg-submit-btn,
    button.fotg-submit-btn {
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

/* --------------------------------------------------------------------------
   CITY SEARCH INPUT RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .fotg-city-search-input,
    input.fotg-city-search-input {
        padding: 0.5rem 2rem !important;
        font-size: 14px !important;
    }

    .fotg-city-search-wrapper {
        max-width: 100% !important;
    }

    .fotg-city-dropdown {
        max-height: 250px !important;
    }

    .fotg-city-option {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 479px) {
    .fotg-city-search-input,
    input.fotg-city-search-input {
        padding: 0.4rem 1.8rem !important;
        font-size: 13px !important;
    }
}

/* --------------------------------------------------------------------------
   DESTINATIONS WIDGET RESPONSIVE
   -------------------------------------------------------------------------- */

/* Large Desktop */
@media (min-width: 1400px) {
    .fotg-destinations-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
    .fotg-destinations-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .fotg-destinations-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .fotg-destinations-title {
        font-size: 28px !important;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .fotg-destinations-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .fotg-destinations-title {
        font-size: 26px !important;
    }

    .fotg-destinations-tabs {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 767px) {
    .fotg-destinations-section {
        padding: 30px 16px !important;
    }

    .fotg-destinations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .fotg-destinations-title {
        font-size: 24px !important;
    }

    .fotg-destinations-subtitle {
        font-size: 14px !important;
    }

    .fotg-dest-tab {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }

    .fotg-destination-card {
        min-height: 200px !important;
    }

    .fotg-destination-name {
        font-size: 15px !important;
    }
}

/* Mobile Large */
@media (min-width: 480px) and (max-width: 575px) {
    .fotg-destinations-section {
        padding: 24px 12px !important;
    }

    .fotg-destinations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .fotg-destinations-title {
        font-size: 22px !important;
    }

    .fotg-destination-card {
        min-height: 180px !important;
    }

    .fotg-destination-name {
        font-size: 14px !important;
    }

    .fotg-destination-desc {
        font-size: 12px !important;
        -webkit-line-clamp: 1 !important;
    }
}

/* Mobile Small */
@media (max-width: 479px) {
    .fotg-destinations-section {
        padding: 20px 10px !important;
    }

    .fotg-destinations-header {
        margin-bottom: 16px !important;
    }

    .fotg-destinations-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .fotg-destinations-title {
        font-size: 20px !important;
    }

    .fotg-destinations-subtitle {
        font-size: 13px !important;
    }

    .fotg-dest-tab {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    .fotg-destinations-tabs {
        gap: 6px !important;
    }

    .fotg-destination-card {
        min-height: 160px !important;
    }

    .fotg-destination-image {
        height: 140px !important;
    }

    .fotg-destination-info {
        padding: 12px !important;
    }

    .fotg-destination-name {
        font-size: 14px !important;
    }

    .fotg-destination-overlay {
        padding: 12px 10px 8px !important;
    }

    .fotg-destination-country {
        font-size: 10px !important;
    }

    .fotg-destination-city {
        font-size: 11px !important;
    }

    /* Hide navigation arrows on mobile - use swipe */
    .fotg-dest-nav {
        display: none !important;
    }

    .fotg-destinations-wrapper {
        padding: 0 !important;
    }
}

/* --------------------------------------------------------------------------
   BOOKING DETAILS PAGE RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet and below */
@media (max-width: 991px) {
    .fotg-booking-details-wrap {
        padding: 20px !important;
    }

    .fotg-details-layout {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .fotg-details-main,
    .fotg-details-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fotg-order-summary {
        position: static !important;
        top: auto !important;
    }

    .fotg-progress-steps {
        padding: 16px !important;
    }

    .fotg-step-label {
        font-size: 11px !important;
    }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 767px) {
    .fotg-booking-details-wrap {
        padding: 16px !important;
    }

    .fotg-details-form {
        padding: 20px !important;
    }

    .fotg-section-header h3 {
        font-size: 16px !important;
    }

    .fotg-form-row {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .fotg-form-group {
        width: 100% !important;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .fotg-booking-details-wrap {
        padding: 12px !important;
    }

    .fotg-progress-steps {
        padding: 12px 8px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }

    .fotg-step {
        min-width: auto !important;
        flex-shrink: 0 !important;
    }

    .fotg-step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }

    .fotg-step-label {
        display: none !important;
    }

    .fotg-step-line {
        width: 30px !important;
        margin: 0 8px !important;
    }

    .fotg-details-form {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .fotg-section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .fotg-section-header h3 {
        font-size: 15px !important;
    }

    .fotg-form-input,
    .fotg-form-select {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .fotg-trust-badges {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .fotg-trust-badge {
        padding: 10px 16px !important;
    }
}

/* Mobile Small */
@media (max-width: 479px) {
    .fotg-booking-details-wrap {
        padding: 8px !important;
    }

    .fotg-details-form {
        padding: 14px !important;
    }

    .fotg-order-summary {
        padding: 16px !important;
    }

    .fotg-summary-header {
        padding: 16px !important;
        min-height: 100px !important;
    }

    .fotg-summary-title {
        font-size: 14px !important;
    }

    .fotg-summary-row {
        padding: 10px 0 !important;
        font-size: 13px !important;
    }

    .fotg-summary-total {
        font-size: 18px !important;
    }
}

/* --------------------------------------------------------------------------
   TRUST BADGES RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .fotg-trust-badges {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .fotg-trust-badge {
        flex: 1 1 calc(50% - 6px) !important;
        min-width: 200px !important;
    }
}

@media (max-width: 575px) {
    .fotg-trust-badges {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .fotg-trust-badge {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        justify-content: flex-start !important;
    }

    .fotg-trust-badge-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .fotg-trust-badge-title {
        font-size: 13px !important;
    }

    .fotg-trust-badge-desc {
        font-size: 11px !important;
    }
}

/* --------------------------------------------------------------------------
   CONFIRMATION PAGE RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .fotg-confirmation-wrapper {
        padding: 16px !important;
        margin: 20px auto !important;
    }

    .fotg-confirmation-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .fotg-confirmation-card {
        padding: 20px !important;
    }

    .fotg-conf-number {
        font-size: 24px !important;
    }

    .fotg-confirmation-title {
        font-size: 28px !important;
    }

    .fotg-next-steps li {
        flex-direction: column !important;
        text-align: center !important;
    }

    .fotg-confirmation-contact {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .fotg-contact-info {
        flex-direction: column !important;
        width: 100% !important;
    }

    .fotg-contact-btn {
        justify-content: center !important;
    }

    .fotg-confirmation-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .fotg-action-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 479px) {
    .fotg-confirmation-wrapper {
        padding: 12px !important;
        margin: 12px auto !important;
    }

    .fotg-confirmation-number-card {
        padding: 20px !important;
    }

    .fotg-conf-number {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }

    .fotg-confirmation-title {
        font-size: 24px !important;
    }

    .fotg-confirmation-subtitle {
        font-size: 14px !important;
    }

    .fotg-confirmation-card {
        padding: 16px !important;
    }

    .fotg-confirmation-card h3 {
        font-size: 15px !important;
    }

    .fotg-detail-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .fotg-detail-value {
        text-align: left !important;
        max-width: 100% !important;
    }

    .fotg-step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }
}

/* --------------------------------------------------------------------------
   MODAL RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .fotg-destinations-modal-content {
        width: 95% !important;
        max-width: 95% !important;
        max-height: 90vh !important;
        margin: 5vh auto !important;
    }

    .fotg-destinations-modal-header {
        padding: 16px !important;
    }

    .fotg-destinations-search {
        font-size: 14px !important;
    }

    .fotg-destinations-list {
        padding: 12px !important;
    }

    .fotg-destination-list-item {
        padding: 12px !important;
        font-size: 14px !important;
    }
}

/* --------------------------------------------------------------------------
   AUTOCOMPLETE DROPDOWN RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .fotg-osm-suggestions {
        max-height: 250px !important;
        border-radius: 8px !important;
    }

    .fotg-osm-suggestion {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .fotg-osm-suggestion-icon {
        width: 28px !important;
        height: 28px !important;
    }
}

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */

@media print {
    .fotg-hero-section,
    .fotg-destinations-section,
    .fotg-submit-btn,
    .fotg-action-btn,
    .fotg-confirmation-actions,
    .fotg-confirmation-contact {
        display: none !important;
    }

    .fotg-confirmation-page {
        padding: 20px !important;
    }

    .fotg-confirmation-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid !important;
    }
}

/* --------------------------------------------------------------------------
   HIGH DPI / RETINA DISPLAYS
   -------------------------------------------------------------------------- */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .fotg-booking-widget,
    .fotg-destinations-section,
    .fotg-booking-details-wrap {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
}

/* --------------------------------------------------------------------------
   LANDSCAPE ORIENTATION (MOBILE)
   -------------------------------------------------------------------------- */

@media (max-height: 500px) and (orientation: landscape) {
    .fotg-hero-section {
        min-height: auto !important;
        padding: 20px !important;
    }

    .fotg-hero-content {
        flex-direction: row !important;
        align-items: center !important;
    }

    .fotg-hero-text {
        max-width: 50% !important;
    }

    .fotg-booking-card {
        max-width: 45% !important;
    }

    .fotg-hero-title {
        font-size: 24px !important;
    }
}

/* --------------------------------------------------------------------------
   TOUCH DEVICE OPTIMIZATIONS
   -------------------------------------------------------------------------- */

@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .fotg-submit-btn,
    button.fotg-submit-btn {
        min-height: 50px !important;
    }

    .fotg-input-field {
        min-height: 48px !important;
    }

    .fotg-dest-tab {
        min-height: 44px !important;
    }

    .fotg-destination-card {
        cursor: pointer !important;
    }

    /* Remove hover effects that don't work well on touch */
    .fotg-destination-card:hover {
        transform: none !important;
    }

    .fotg-submit-btn:hover {
        transform: none !important;
    }

    /* Add active states instead */
    .fotg-destination-card:active {
        transform: scale(0.98) !important;
    }

    .fotg-submit-btn:active {
        transform: scale(0.98) !important;
    }
}

/* ==========================================================================
   MODERN RESPONSIVE ENHANCEMENTS
   Complete responsive polish for all devices
   ========================================================================== */

/* --- Smooth layout transitions --- */
.fotg-booking-card,
.fotg-datetime-section,
.fotg-travelers-section,
.fotg-datetime-row,
.fotg-counters-row,
.fotg-route-section,
.fotg-hero-content,
.fotg-hero-title,
.fotg-hero-subtitle,
.fotg-features-grid,
.fotg-trust-strip,
.fotg-booking-card-wrap,
.fotg-details-layout {
    transition: all 0.3s ease;
}

/* --- Hero section full width mobile --- */
@media (max-width: 991px) {
    .fotg-hero-section,
    .fotg-welcome-style .fotg-hero-section {
        min-height: 400px !important;
        padding: 40px 20px 160px !important;
    }

    .fotg-hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .fotg-booking-card-wrap {
        margin-top: -120px !important;
        padding: 0 16px !important;
    }

    /* Elementor hero card adjustments */
    .fotg-hero-section .fotg-booking-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* --- Tablet landscape refinements --- */
@media (min-width: 768px) and (max-width: 991px) {
    .fotg-booking-card {
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .fotg-datetime-row,
    .fotg-counters-row {
        grid-template-columns: 1fr 1fr !important;
    }

    .fotg-hero-title,
    .fotg-hero-heading {
        font-size: 36px !important;
    }
}

/* --- Tablet portrait --- */
@media (max-width: 767px) {
    .fotg-hero-section,
    .fotg-welcome-style .fotg-hero-section {
        padding: 32px 16px 140px !important;
        min-height: 350px !important;
    }

    .fotg-hero-title,
    .fotg-hero-heading {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    .fotg-hero-subtitle,
    .fotg-hero-subheading {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .fotg-booking-card {
        max-width: 100% !important;
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }

    /* Stack datetime and counters */
    .fotg-datetime-row,
    .fotg-counters-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .fotg-datetime-section,
    .fotg-travelers-section {
        flex-direction: column !important;
    }

    .fotg-datetime-divider,
    .fotg-travelers-divider {
        width: 100% !important;
        height: 1px !important;
        margin: 0 !important;
    }

    /* Features grid 2 columns on tablet portrait */
    .fotg-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Order summary sidebar goes below */
    .fotg-details-layout {
        flex-direction: column !important;
    }

    .fotg-details-main,
    .fotg-details-sidebar {
        width: 100% !important;
    }

    .fotg-order-summary {
        position: static !important;
    }
}

/* --- Mobile devices --- */
@media (max-width: 575px) {
    .fotg-hero-section,
    .fotg-welcome-style .fotg-hero-section {
        padding: 28px 14px 120px !important;
        min-height: 320px !important;
    }

    .fotg-booking-card-wrap {
        margin-top: -100px !important;
        padding: 0 12px !important;
    }

    .fotg-hero-title,
    .fotg-hero-heading {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    .fotg-hero-subtitle,
    .fotg-hero-subheading {
        font-size: 14px !important;
    }

    .fotg-booking-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    /* Card title */
    .fotg-card-title {
        font-size: 16px !important;
    }

    /* Route fields */
    .fotg-route-field {
        padding: 12px 14px !important;
    }

    .fotg-route-input {
        font-size: 14px !important;
    }

    .fotg-route-label {
        font-size: 11px !important;
    }

    /* Date/time fields compact */
    .fotg-datetime-field {
        padding: 12px 14px !important;
        gap: 10px !important;
    }

    .fotg-field-label {
        font-size: 11px !important;
    }

    .fotg-field-input {
        font-size: 14px !important;
    }

    .fotg-field-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .fotg-field-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .fotg-field-icon i {
        font-size: 18px !important;
    }

    /* Stepper compact */
    .fotg-stepper-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .fotg-stepper-value {
        font-size: 16px !important;
        min-width: 32px !important;
    }

    /* Submit button full width */
    .fotg-submit-btn,
    button.fotg-submit-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        border-radius: 12px !important;
    }

    /* Features single column */
    .fotg-features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .fotg-feature-card {
        padding: 20px !important;
    }

    .fotg-feature-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    /* Trust strip */
    .fotg-trust-strip {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 16px !important;
    }

    .fotg-trust-item {
        font-size: 13px !important;
    }

    /* Social proof */
    .fotg-social-proof-card {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }

    /* City search */
    .fotg-city-search-input-wrap {
        max-width: 100% !important;
    }

    .fotg-city-search-input {
        font-size: 14px !important;
        padding: 10px 36px 10px 36px !important;
    }

    /* Airport dropdown */
    .fotg-airport-dropdown {
        font-size: 13px !important;
    }

    .fotg-airport-item,
    .fotg-airport-option {
        padding: 10px 12px !important;
    }
}

/* --- Small mobile phones (iPhone SE, etc.) --- */
@media (max-width: 374px) {
    .fotg-hero-section,
    .fotg-welcome-style .fotg-hero-section {
        padding: 24px 12px 100px !important;
        min-height: 280px !important;
    }

    .fotg-booking-card-wrap {
        margin-top: -80px !important;
        padding: 0 8px !important;
    }

    .fotg-hero-title,
    .fotg-hero-heading {
        font-size: 22px !important;
    }

    .fotg-hero-subtitle,
    .fotg-hero-subheading {
        font-size: 13px !important;
    }

    .fotg-booking-card {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .fotg-card-title {
        font-size: 15px !important;
    }

    .fotg-field-label,
    .fotg-route-label {
        font-size: 10px !important;
    }

    .fotg-field-input,
    .fotg-route-input,
    .fotg-input-field {
        font-size: 13px !important;
    }

    .fotg-submit-btn,
    button.fotg-submit-btn {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    /* Counter buttons smaller */
    .fotg-counter-btn,
    .fotg-stepper-btn {
        width: 28px !important;
        height: 28px !important;
    }

    .fotg-counter-value,
    .fotg-stepper-value {
        font-size: 15px !important;
        min-width: 28px !important;
    }

    /* Confirmation page */
    .fotg-confirmation-wrapper {
        padding: 8px !important;
    }

    .fotg-confirmation-title {
        font-size: 20px !important;
    }

    .fotg-conf-number {
        font-size: 18px !important;
    }
}

/* --- Safe area insets for notched phones (iPhone X+) --- */
@supports (padding: env(safe-area-inset-bottom)) {
    .fotg-booking-widget {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .fotg-submit-btn,
    button.fotg-submit-btn {
        margin-bottom: env(safe-area-inset-bottom);
    }
}

/* --- Prevent horizontal overflow on all mobile --- */
@media (max-width: 991px) {
    .fotg-booking-widget,
    .fotg-booking-details-wrap,
    .fotg-confirmation-wrapper {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* --- Improved focus styles for accessibility --- */
@media (max-width: 767px) {
    .fotg-input-field:focus,
    .fotg-route-input:focus,
    .fotg-field-input:focus,
    .fotg-form-input:focus,
    .fotg-form-select:focus {
        outline: 2px solid var(--fotg-primary, #C9A227) !important;
        outline-offset: -2px !important;
    }
}

/* --- Time Picker Responsive --- */
@media (max-width: 575px) {
    .fotg-time-dropdown {
        min-width: 260px !important;
        max-width: 290px !important;
    }

    .fotg-time-period-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .fotg-time-option {
        font-size: 12px !important;
        padding: 8px 2px !important;
    }

    .fotg-time-period {
        font-size: 11px !important;
        padding: 5px 4px !important;
    }
}

@media (max-width: 374px) {
    .fotg-time-dropdown {
        min-width: 240px !important;
        max-width: 260px !important;
    }

    .fotg-time-period-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* --- Dark mode preference for autocomplete dropdowns --- */
@media (prefers-color-scheme: dark) {
    .fotg-osm-suggestions,
    .fotg-city-results,
    .fotg-airport-dropdown {
        color-scheme: light;
    }
}
