* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.1em;
    color: #64748b;
    font-weight: 400;
}

header .disclaimer {
    font-size: 0.75em;
    color: #94a3b8;
    font-weight: 300;
    margin-top: 8px;
    font-style: italic;
}

.search-form {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    align-items: end;
}

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

.form-row.transit-row {
    grid-template-columns: 1fr auto;
    margin-top: 20px;
}

.form-col {
    position: relative;
}

.form-col.optional {
    opacity: 0.85;
}

.arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 8px;
}

.swap-btn {
    background: #8b5cf6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.swap-btn:hover {
    background: #7c3aed;
    transform: rotate(180deg);
}

.swap-btn:active {
    transform: scale(0.95) rotate(180deg);
}

.swap-icon {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.travel-arrow {
    font-size: 24px;
    color: #8b5cf6;
    font-weight: 300;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.optional-text {
    font-weight: 400;
    color: #94a3b8;
    text-transform: none;
    font-size: 11px;
}

.input-wrapper {
    position: relative;
}

/* Clear button for input fields */
.input-wrapper .clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    display: none;
    transition: color 0.2s;
    z-index: 2;
}

.input-wrapper .clear-btn:hover {
    color: #64748b;
}

.input-wrapper .clear-btn.visible {
    display: block;
}

input[type="text"],
input[type="date"] {
    width: 100%;
    padding: 14px 40px 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: #f8fafc;
    color: #1e293b;
}

/* Disabled input styling */
input[type="text"]:disabled {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    color: #94a3b8;
    cursor: not-allowed;
    border: 1.5px dashed #cbd5e1;
    opacity: 0.85;
}

input[type="text"]:disabled::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Tooltip for disabled fields */
.tooltip-message {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.3px;
}

.tooltip-message::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #7c3aed;
}

/* Show tooltip on hover of disabled inputs with animation */
.input-wrapper:hover .tooltip-message {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}

/* Also show when focusing on disabled field */
.input-wrapper:focus-within .tooltip-message {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}



/* Disabled section styling */
.disabled-section {
    position: relative;
}

.disabled-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shake animation for guidance */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake-hint {
    animation: shake 0.5s;
}

/* Highlight animation for nationality field */
@keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

.highlight-field {
    animation: highlight-pulse 1.5s;
    border-color: #8b5cf6 !important;
}

select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: #f8fafc;
    color: #1e293b;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

select optgroup {
    font-weight: 600;
    font-size: 13px;
    color: #64748b;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f1f5f9;
    padding: 8px 0;
}

select option {
    font-weight: 400;
    color: #334155;
    padding: 8px 16px;
    background: white;
}

select option:hover {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 8px 0;
}

select option {
    padding: 8px 16px;
    color: #1e293b;
    background: white;
}

select optgroup option {
    padding-left: 24px;
}

input[type="text"]:focus,
input[type="date"]:focus,
select:focus {
    outline: none;
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

input[type="text"]::placeholder {
    color: #94a3b8;
}

.date-display {
    margin-top: 8px;
    font-size: 13px;
    color: #8b5cf6;
    font-weight: 500;
    min-height: 20px;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 36px 0;
}

.transit-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.transit-btn {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    color: #8b5cf6;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.transit-btn:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    border-style: solid;
}

.remove-transit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    color: #dc2626;
    text-decoration: underline;
}

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

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

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

.search-result-item:hover {
    background-color: #f8fafc;
}

.search-result-item .country {
    font-weight: 600;
    color: #1e293b;
}

.search-result-item .location {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.check-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    margin-top: 36px;
}

.check-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.25);
}

.check-btn:active:not(:disabled) {
    transform: translateY(0);
}

.check-btn:disabled {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    cursor: not-allowed;
    opacity: 0.7;
}

.results-container {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: none;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.results-container.active {
    display: block;
}

/* Journey header */
.journey-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 36px;
    text-align: center;
}

.journey-header h2 {
    margin-bottom: 28px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.journey-grid.with-transit {
    grid-template-columns: 1fr auto 1fr auto 1fr;
}

.journey-item {
    text-align: center;
}

.journey-item.transit {
    opacity: 0.9;
}

.journey-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.journey-value {
    font-size: 18px;
    font-weight: 600;
}

.journey-sublabel {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 3px;
}

.journey-arrow-container {
    text-align: center;
}

.journey-arrow {
    font-size: 28px;
    opacity: 0.9;
}

.journey-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.journey-item-bottom {
    text-align: center;
}

.journey-value-small {
    font-size: 14px;
    font-weight: 500;
}

/* Main result section */
.main-result-section {
    padding: 36px;
    border-bottom: 1px solid #e2e8f0;
}

.main-status {
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.main-status.green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.15);
}

.main-status.red {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    box-shadow: 0 2px 12px rgba(244, 67, 54, 0.15);
}

.main-status.amber {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ff9800;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.15);
}

.main-status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    font-weight: bold;
}

.main-status.green .main-status-icon {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.main-status.red .main-status-icon {
    background: linear-gradient(135deg, #ef5350 0%, #f44336 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.main-status.amber .main-status-icon {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.main-status-text h3 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 600;
}

.main-status.green .main-status-text h3 {
    color: #166534;
}

.main-status.red .main-status-text h3 {
    color: #991b1b;
}

.main-status.amber .main-status-text h3 {
    color: #92400e;
}

.main-status-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.main-status.green .main-status-text p {
    color: #166534;
}

.main-status.red .main-status-text p {
    color: #991b1b;
}

.main-status.amber .main-status-text p {
    color: #92400e;
}

/* Passport requirements */
.passport-requirements {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    margin-top: 20px;
}

.passport-requirements h4 {
    margin-bottom: 16px;
    color: #0369a1;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.passport-requirements h4::before {
    content: "📄";
    font-size: 20px;
}

.passport-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.passport-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.passport-label {
    font-weight: 500;
    color: #334155;
    min-width: 150px;
}

.passport-value {
    color: #0369a1;
    font-weight: 600;
}

/* Visa details */
.visa-details {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #fcd34d;
    margin-top: 20px;
}

.visa-details h4 {
    margin-bottom: 16px;
    color: #92400e;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visa-details h4::before {
    content: "🎫";
    font-size: 20px;
}

.visa-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visa-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.visa-item .visa-label {
    font-weight: 500;
    color: #334155;
    min-width: 150px;
}

.visa-item .visa-value {
    color: #92400e;
    font-weight: 600;
}

/* Conditions section */
.conditions-section {
    padding: 36px;
}

.conditions-section > h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #1e293b;
    font-weight: 600;
}

/* Transit section */
.transit-section {
    padding: 36px;
    background: #fef3f2;
    border-top: 1px solid #e2e8f0;
}

.transit-section > h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #1e293b;
    font-weight: 600;
}

.transit-status {
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.transit-status.green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.15);
}

.transit-status.red {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    box-shadow: 0 2px 12px rgba(244, 67, 54, 0.15);
}

.transit-status.amber {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ff9800;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.15);
}

.transit-status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    font-weight: bold;
}

.transit-status.green .transit-status-icon {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.transit-status.red .transit-status-icon {
    background: linear-gradient(135deg, #ef5350 0%, #f44336 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.transit-status.amber .transit-status-icon {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.transit-status-text h4 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 600;
}

.transit-status.green .transit-status-text h4 {
    color: #166534;
}

.transit-status.red .transit-status-text h4 {
    color: #991b1b;
}

.transit-status.amber .transit-status-text h4 {
    color: #92400e;
}

.transit-status-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.transit-status.green .transit-status-text p {
    color: #166534;
}

.transit-status.red .transit-status-text p {
    color: #991b1b;
}

.transit-status.amber .transit-status-text p {
    color: #92400e;
}

.transit-restrictions {
    margin-top: 20px;
}

.category-group {
    margin-bottom: 28px;
}

.category-group h4 {
    margin-bottom: 16px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
    font-size: 14px;
    line-height: 1.6;
}

.message:hover {
    transform: translateX(2px);
}

.message.green {
    background: linear-gradient(90deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.message.red {
    background: linear-gradient(90deg, #ffebee 0%, #fce4ec 100%);
    border-left: 4px solid #f44336;
    color: #c62828;
}

.message.amber {
    background: linear-gradient(90deg, #fff8e1 0%, #fffce5 100%);
    border-left: 4px solid #ff9800;
    color: #e65100;
}

/* Advertisement messages */
.message.advertisement {
    background: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    color: #075985;
    font-style: italic;
}

.message.advertisement::before {
    content: "💡 ";
    font-style: normal;
}

.message.advertisement a {
    color: #0284c7;
    font-weight: 600;
    text-decoration: underline;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-size: 18px;
    font-weight: 500;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.loading-container {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.loading-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, #fbbf24 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.loading-status {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 10px;
    min-height: 20px;
}

.loading::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.error {
    background-color: #fee2e2;
    color: #991b1b;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row.journey-row {
        grid-template-columns: 1fr;
    }
    
    .arrow-col {
        display: flex;
        margin: 10px 0;
    }
    
    .swap-btn {
        margin-top: 0;
    }
    
    .transit-toggle {
        margin-top: 16px;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .journey-grid.with-transit {
        grid-template-columns: 1fr;
    }
    
    .journey-arrow-container {
        display: none;
    }
    
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

footer code {
    background-color: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    color: #1e293b;
}

/* iVisa Control Section - Styled as Trusted Partner offer like Breeze */
.ivisa-control {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border: 2px dashed #667eea;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

/* Add "Trusted Partner" label on the border */
.ivisa-control::before {
    content: "🌟 Trusted Partner";
    position: absolute;
    top: -11px;
    left: 16px;
    background: #ffffff;
    color: #667eea;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ivisa-control .ivisa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ivisa-control .ivisa:hover {
    transform: translateX(4px);
}

.ivisa-control .ivisa > div:first-child {
    flex: 1;
    line-height: 1.4;
}

.ivisa-control .start {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ivisa-control .ivisa:hover .start {
    background: #5a67d8;
}

/* Breeze promotional message - teal theme with dotted border */
.promotional-message.breeze {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 2px dotted #14b8a6;
    border-radius: 8px;
    font-size: 14px;
    color: #134e4a;
    position: relative;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
}

/* Add "Partner Offer" label on the border */
.promotional-message.breeze::before {
    content: "💡 Partner Offer";
    position: absolute;
    top: -11px;
    left: 16px;
    background: #ffffff;
    color: #14b8a6;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotional-message.breeze a {
    color: #0d9488;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.promotional-message.breeze a:hover {
    color: #0f766e;
    text-decoration: underline;
}


/* Responsive design for iVisa Control */
@media (max-width: 640px) {
    .ivisa-control {
        padding: 16px;
    }
    
    .ivisa-control::before {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .ivisa-control .ivisa {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .ivisa-control .ivisa > div:first-child {
        font-size: 16px;
    }
    
    .ivisa-control .start {
        text-align: center;
        width: 100%;
    }
}