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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0;
}

/* Logo Container */
.logo-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 8px;
    text-align: center;
    align-self: center;
}

.logo {
    max-width: 100%;
    max-height: 90px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Promotional Section */
.promo-section {
    width: 100%;
    max-width: 900px;
    background: #FFD700;
    border-radius: 15px;
    padding: 12px 18px;
    margin: 0 auto 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease-out;
    align-self: center;
}

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

.promo-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.promo-image {
    flex-shrink: 0;
}

.taxi-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.promo-text {
    flex: 1;
    color: #1a1a1a;
}

.promo-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.3;
}

.promo-subtitle {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a1a1a;
}

.promo-description {
    font-size: 12px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 500;
}

.promo-contact {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.phone-link:hover {
    color: #333;
}

.phone-link .fa-phone {
    color: inherit;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #333;
}

.whatsapp-link:active {
    opacity: 0.8;
}

.whatsapp-link i {
    font-size: 18px;
    line-height: 1;
    color: #25D366;
}

.promo-partner {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    align-self: center;
}

/* Progress Container */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: #FFD700;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 33.33%;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #FFD700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-weight: bold;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.step.active .step-label {
    color: #333;
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.form-step h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

/* Date input styling - make entire field clickable */
.form-group input[type="date"] {
    cursor: pointer;
    position: relative;
}

.form-group input[type="date"]:hover {
    border-color: #FFD700;
}

/* Ensure date picker icon is visible and clickable */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Searchable Dropdown */
.searchable-dropdown {
    position: relative;
    width: 100%;
}

.searchable-input {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: white;
    cursor: text;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.searchable-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.searchable-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.searchable-input.error {
    border-color: #f5576c;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: -2px;
}

.dropdown-list.show {
    display: block;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
    background-color: #f8f8f8;
}

.dropdown-item.selected {
    background-color: #FFD700;
    color: #1a1a1a;
    font-weight: 500;
}

.dropdown-item.no-results {
    padding: 12px 16px;
    color: #999;
    font-style: italic;
    cursor: default;
}

.dropdown-item.no-results:hover {
    background-color: white;
}

.form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #e0e0e0;
}

.date-format-hint {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    font-style: italic;
}


.form-group input.error,
.form-group select.error {
    border-color: #f5576c;
}

.phone-input-container.error {
    border-color: #f5576c;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.phone-input-container:focus-within {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.phone-input-container.error {
    border-color: #f5576c;
}

.phone-prefix {
    padding: 14px 12px;
    background: #f8f8f8;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid #e0e0e0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-input-container input {
    border: none;
    padding: 14px 16px;
    flex: 1;
    font-size: 16px;
    outline: none;
}

.phone-input-container input:focus {
    outline: none;
    box-shadow: none;
}

.error-message {
    display: none;
    color: #f5576c;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-next,
.btn-submit {
    background: #FFD700;
    color: #1a1a1a;
    font-weight: bold;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: #FFC700;
}

.btn-back {
    background: #f5f5f5;
    color: #666;
}

.btn-back:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-submit {
    background: #FFD700;
    color: #1a1a1a;
}

.btn-submit:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: #FFC700;
}

/* Responsive Design */
@media (min-width: 769px) {
    body {
        padding: 8px 0;
    }
    
    .logo-container,
    .promo-section,
    .footer {
        width: auto;
    }
    
    .form-container {
        width: 100%;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .form-container {
        padding: 25px;
    }

    .promo-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .taxi-image {
        width: 150px;
    }

    .promo-text h3 {
        font-size: 14px;
    }

    .promo-subtitle {
        font-size: 12px;
    }

    .promo-description {
        font-size: 11px;
    }

    .promo-contact {
        font-size: 12px;
    }

    .step-label {
        font-size: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 350px;
    }
    
    .logo {
        max-height: 110px;
    }

    .form-step h2 {
        font-size: 22px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    align-self: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFD700;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

