.step {
    animation: fadeIn 0.5s ease-in-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#recovery-options-container .form-check {
    cursor: pointer;
    transition: background-color 0.2s;
}

#recovery-options-container .form-check:hover {
    background-color: #f8f9fa;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #ccc;
    background-color: #fff;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: #00b8c0;
    border-color: #00b8c0;
}

.form-check-input:checked::before {
    box-shadow: 0 0 0 4px white inset;
}

#confirm-button{
  min-height: 70px;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Quicksand:wght@500;600;700&display=swap');
    
         * {
             box-sizing: border-box;
         }
    
         body {
             font-family: 'Poppins', sans-serif;
             background: #f8f9fa;
             margin: 0;
         }
    
    
         h1,
         h2,
         h3,
         h4,
         h5,
         h6,
         .hero-content h1,
         .deal-card-title,
         .footer-column h3,
         #dropdown-title,
         .discover-deals-section h2,
         .content-column h2,
         .how-it-works-container h2,
         .step-card h3,
         .download-text-content h2 {
             font-family: 'Quicksand', sans-serif;
         }
    
         :root {
             --primary-color: #2DB8BF;
             --primary-color-dark: #26a3aa;
             --accent-color: #ff5c2b;
         }
    
         .hero-section {
             width: 100%;
             height: 1000px;
             position: relative;
             overflow: hidden;
             background-image: url('{{ asset(' images/menupage/qr-menu-uygulamasi-online-7345.jpg') }}');
             background-size: cover;
             background-position: center;
         }
    
    
         .hero-container {
             position: absolute;
             top: 0;
             left: 50%;
             transform: translateX(-50%);
             width: 100%;
             height: 100%;
             z-index: 2;
             display: flex;
             flex-direction: column;
             align-items: center;
             padding: 0 15px;
             justify-content: flex-start;
             padding-top: 150px;
         }
    
         .hero-container::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background-color: rgba(0, 0, 0, 0.5);
             z-index: -1;
         }
    
         .hero-content {
             text-align: center;
             margin-bottom: 30px;
             color: white;
         }
    
         .hero-content h1 {
             font-size: 48px;
             font-weight: 700;
             margin: 0 0 10px 0;
             text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
             line-height: 1.2;
             color: white;
         }
    
         .hero-content h1 .highlight {
             position: relative;
             display: inline-block;
             color: #2DB8BF;
         }
    
         .hero-content h1 .highlight::after {
             content: '';
             position: absolute;
             bottom: -5px;
             left: 5%;
             width: 90%;
             height: 4px;
             background-color: var(--accent-color);
             border-radius: 2px;
         }
    
         .hero-content p {
             font-size: 18px;
             font-weight: 300;
             color: #e0e0e0;
             margin: 0;
             line-height: 1.5;
             text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
         }
    
         .discover-deals-section {
             padding: 80px 20px;
             background-color: #fff;
             text-align: center;
         }
    
         .deals-container {
             max-width: 900px;
             margin: 0 auto;
         }
    
         .discover-deals-section h2 {
             font-size: 36px;
             font-weight: 700;
             color: #222;
             margin-bottom: 15px;
         }
    
         .discover-deals-section p {
             font-size: 18px;
             color: #666;
             margin-bottom: 40px;
             line-height: 1.6;
         }
    
         .search-wrapper {
             width: 100%;
             max-width: 900px;
         }
    
         .search-bar {
             display: flex;
             align-items: center;
             background: #fff;
             border-radius: 60px;
             padding: 14px 18px;
             box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
             width: 100%;
             transition: all 0.25s ease;
             border: 1px solid #e9e9e9;
         }
    
         .search-bar:hover {
             box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
             transform: translateY(-1px);
         }
    
         .search-field {
             display: flex;
             align-items: center;
             gap: 8px;
             flex: 1;
             padding: 0 10px;
         }
    
         .icon {
             font-size: 18px;
             color: var(--accent-color);
         }
    
         .divider {
             width: 1px;
             height: 28px;
             background: #e5e5e5;
         }
    
         .search-field input {
             border: none;
             outline: none;
             width: 100%;
             font-size: 15px;
             color: #333;
             background: transparent;
         }
    
         .search-field input::placeholder {
             color: #aaa;
         }
    
         .location-field {
             position: relative;
         }
    
         .custom-dropdown {
             position: relative;
             width: 100%;
         }
    
         .dropdown-selected {
             display: flex;
             justify-content: space-between;
             align-items: center;
             padding: 8px 12px;
             cursor: pointer;
             user-select: none;
             border-radius: 8px;
             transition: all 0.3s ease;
         }
    
         .dropdown-selected:hover {
             background: #f8f9fa;
         }
    
         .dropdown-selected span:first-child {
             color: #333;
             font-size: 14px;
             white-space: nowrap;
             overflow: hidden;
             text-overflow: ellipsis;
         }
    
         .dropdown-selected .arrow {
             color: #999;
             font-size: 12px;
             transition: transform 0.3s ease;
             margin-left: 8px;
         }
    
         .dropdown-menu {
             position: absolute;
             top: 100%;
             left: 0;
             right: 0;
             background: white;
             border-radius: 12px;
             box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
             margin-top: 8px;
             max-height: 0;
             overflow: hidden;
             opacity: 0;
             transition: all 0.3s ease;
             z-index: 100000;
         }
    
         .dropdown-menu.show {
             max-height: 450px;
             opacity: 1;
         }
    
         .dropdown-search {
             padding: 12px;
             border-bottom: 1px solid #eee;
             position: sticky;
             top: 50px;
             background: white;
             z-index: 10;
         }
    
         .dropdown-search input {
             width: 100%;
             padding: 8px 12px;
             border: 1px solid #e0e0e0;
             border-radius: 8px;
             font-size: 14px;
             outline: none;
             transition: border 0.3s ease;
         }
    
         .dropdown-search input:focus {
             border-color: var(--primary-color);
         }
    
         .dropdown-list {
             max-height: 320px;
             overflow-y: auto;
             padding: 8px;
         }
    
         .dropdown-header {
             display: flex;
             align-items: center;
             padding: 12px;
             border-bottom: 1px solid #eee;
             position: sticky;
             top: 0;
             background: #fff;
             z-index: 11;
         }
    
         .back-btn {
             background: none;
             border: none;
             font-size: 20px;
             color: #555;
             cursor: pointer;
             padding: 0 10px 0 0;
             display: none;
         }
    
         #dropdown-title {
             font-weight: 600;
             color: #333;
             font-size: 15px;
         }
    
         .pane {
             display: none;
         }
    
         .pane.active {
             display: block;
         }
    
         .location-item.city {
             font-weight: 500;
         }
    
         .location-group-header {
             padding: 10px 12px;
             font-weight: 600;
             color: var(--primary-color);
             font-size: 13px;
             cursor: pointer;
             border-radius: 8px;
             margin-top: 4px;
             transition: all 0.2s ease;
             background: #f0f8f9;
         }
    
         .location-group-header:hover {
             background: #e0f2f4;
             transform: translateX(2px);
         }
    
         .location-item {
             padding: 10px 12px;
             cursor: pointer;
             transition: all 0.2s ease;
             font-size: 14px;
             color: #555;
             border-radius: 8px;
             margin: 2px 0;
         }
    
         .location-item.county {
             padding-left: 24px;
         }
    
         .location-item:hover {
             background: #f0f8f9;
             color: var(--primary-color);
             transform: translateX(4px);
         }
    
         .no-results {
             padding: 20px;
             text-align: center;
             color: #999;
             font-size: 14px;
         }
    
         .search-btn {
             background: var(--primary-color);
             border: none;
             color: white;
             font-weight: 600;
             border-radius: 50px;
             padding: 12px 30px;
             margin-left: 10px;
             cursor: pointer;
             transition: all 0.25s ease;
             box-shadow: 0 3px 10px rgba(45, 184, 191, 0.3);
             white-space: nowrap;
         }
    
         .search-btn:hover {
             background: var(--primary-color-dark);
             box-shadow: 0 6px 15px rgba(45, 184, 191, 0.4);
             transform: translateY(-2px);
         }
    
         .search-btn:active {
             transform: scale(0.97);
         }
    
         .loader {
             border: 4px solid #f3f3f3;
             border-top: 4px solid var(--primary-color);
             border-radius: 50%;
             width: 40px;
             height: 40px;
             animation: spin 1s linear infinite;
             margin: 40px auto;
         }
    
         @keyframes spin {
             0% {
                 transform: rotate(0deg);
             }
    
             100% {
                 transform: rotate(360deg);
             }
         }
    
         .dropdown-list::-webkit-scrollbar {
             width: 6px;
         }
    
         .dropdown-list::-webkit-scrollbar-track {
             background: #f1f1f1;
             border-radius: 10px;
         }
    
         .dropdown-list::-webkit-scrollbar-thumb {
             background: var(--primary-color);
             border-radius: 10px;
         }
    
         .dropdown-list::-webkit-scrollbar-thumb:hover {
             background: var(--primary-color-dark);
         }
    
         .results-wrapper {
             max-width: 1200px;
             margin: 0 auto;
         }
    
         .deals-grid {
             display: grid;
             grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
             gap: 30px;
         }
    
         .deal-card {
             background: #fff;
             border-radius: 12px;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
             overflow: hidden;
             transition: transform 0.2s ease, box-shadow 0.2s ease;
             display: flex;
             flex-direction: column;
         }
    
         .deal-card:hover {
             transform: translateY(-5px);
             box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
         }
    
         .deal-card-image {
             width: 100%;
             height: 180px;
             object-fit: cover;
         }
    
         .deal-card-content {
             padding: 20px;
             flex-grow: 1;
             display: flex;
             flex-direction: column;
         }
    
         .deal-card-title {
             margin: 0 0 10px;
             font-size: 1.2rem;
             font-weight: 600;
             color: #333;
         }
    
         .deal-card-place {
             display: flex;
             align-items: center;
             gap: 8px;
             font-weight: 500;
             color: #555;
             margin-bottom: 15px;
         }
    
         .place-logo {
             width: 24px;
             height: 24px;
             border-radius: 50%;
             object-fit: cover;
             border: 1px solid #eee;
         }
    
         .deal-card-description {
             color: #666;
             font-size: 0.9rem;
             line-height: 1.5;
             flex-grow: 1;
         }
    
         .error-message {
             text-align: center;
             font-size: 1.1rem;
             color: #888;
             padding: 40px 0;
         }
    
         .no-results-wrapper {
             text-align: center;
             padding: 40px 20px;
         }
    
         .no-results-message {
             padding: 0;
             margin: 0 0 20px 0;
             font-size: 1.1rem;
             color: #888;
         }
    
         .add-deal-btn {
             display: inline-block;
             padding: 12px 28px;
             font-size: 15px;
             font-weight: 600;
             color: #fff;
             background-color: var(--primary-color);
             border-radius: 50px;
             text-decoration: none;
             transition: all 0.25s ease;
             box-shadow: none;
         }
    
         .add-deal-btn:hover {
             transform: translateY(-2px);
             box-shadow: none;
             color: #fff;
         }
    
         .search-bar.error-shake {
             animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
             border-color: var(--accent-color);
         }
    
         @keyframes shake {
    
             10%,
             90% {
                 transform: translate3d(-1px, 0, 0);
             }
    
             20%,
             80% {
                 transform: translate3d(2px, 0, 0);
             }
    
             30%,
             50%,
             70% {
                 transform: translate3d(-4px, 0, 0);
             }
    
             40%,
             60% {
                 transform: translate3d(4px, 0, 0);
             }
         }
    
         .show-more-btn {
             display: block;
             margin: 30px auto;
             padding: 12px 30px;
             font-size: 15px;
             font-weight: 600;
             color: var(--primary-color);
             background-color: #fff;
             border: 2px solid var(--primary-color);
             border-radius: 50px;
             cursor: pointer;
             transition: all 0.25s ease;
         }
    
         .show-more-btn:hover {
             transform: translateY(-2px);
         }
    
         .what-is-yakala-section {
             padding-bottom: 40px;
             padding-top: 40px;
             background-color: #f8f9fa;
         }
    
         .yakala-container {
             max-width: 1140px;
             margin: 0 auto;
             display: flex;
             align-items: center;
             gap: 60px;
         }
    
         .content-column {
             flex: 1;
             text-align: center;
         }
    
         .image-column {
             flex: 1;
             height: 450px;
             background-size: cover;
             background-position: center;
             border-radius: 16px;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         }
    
         .content-column h2 {
             font-size: 36px;
             font-weight: 700;
             color: #222;
             margin-bottom: 20px;
         }
    
         .content-column p {
             font-size: 17px;
             color: #555;
             line-height: 1.7;
             margin-bottom: 35px;
         }
    
         .manifesto-btn {
             display: inline-block;
             background: var(--primary-color);
             color: #fff;
             padding: 14px 28px;
             border-radius: 50px;
             text-decoration: none;
             font-weight: 600;
             transition: all 0.25s ease;
             box-shadow: 0 3px 10px rgba(45, 184, 191, 0.3);
         }
    
         .manifesto-btn:hover {
             transform: translateY(-2px);
         }
    
         .how-it-works-section {
             padding: 80px 20px;
             background-color: #fff;
         }
    
         .how-it-works-container {
             max-width: 1140px;
             margin: 0 auto;
             text-align: center;
         }
    
         .how-it-works-container h2 {
             font-size: 36px;
             font-weight: 700;
             color: #222;
             margin-bottom: 60px;
         }
    
         .steps-wrapper {
             display: flex;
             justify-content: space-around;
             gap: 250px;
         }
    
         .step-card {
             flex: 1;
             max-width: 320px;
         }
    
         .step-icon {
             width: 169px;
             height: 200px;
             margin-bottom: 25px;
             color: var(--primary-color);
         }
    
         .step-icon-2 {
             width: 390px;
             height: 200px;
             margin-bottom: 25px;
             color: var(--primary-color);
             border-radius: 10px;
         }
    
         .step-icon-3 {
             width: 200px;
             height: 200px;
             margin-bottom: 25px;
             color: var(--primary-color);
         }
    
         .step-card h3 {
             font-size: 22px;
             font-weight: 600;
             color: #333;
             margin-bottom: 15px;
         }
    
         .step-card p {
             font-size: 16px;
             color: #666;
             line-height: 1.6;
         }
    
         .download-app-section {
             background-color: #fff;
         }
    
         .download-app-container {
             max-width: 1140px;
             margin: 0 auto;
             display: flex;
             align-items: center;
             justify-content: space-between;
             gap: 40px;
         }
    
         .download-image-content {
             flex-basis: 30%;
             display: flex;
             justify-content: center;
             align-items: center;
         }
    
         .download-image-content img {
             max-width: 350px;
             height: auto;
             display: block;
         }
    
         .download-text-content {
             flex-basis: 40%;
         }
    
         .download-text-content h2 {
             font-size: 36px;
             font-weight: 700;
             color: #222;
             margin-top: 0;
             margin-bottom: 15px;
         }
    
         .download-text-content p {
             font-size: 17px;
             color: #555;
             line-height: 1.7;
             margin: 0;
             max-width: 500px;
         }
    
         .download-badge-content {
             display: flex;
             gap: 20px;
             flex-basis: 30%;
             justify-content: flex-end;
             align-items: center;
         }
    
         .download-badge-content a {
             width: 180px;
             display: block;
         }
    
         .download-badge-content a img {
             width: 100%;
             height: auto;
             transition: transform 0.2s ease;
         }
    
         .download-badge-content a:hover img {
             transform: scale(1.05);
         }
    
         .site-footer {
             background-color: #fff;
             padding: 60px 20px 0;
             border-top: 1px solid #e9e9e9;
             font-size: 15px;
             color: #555;
         }
    
         .footer-container {
             max-width: 1200px;
             margin: 0 auto;
         }
    
         .footer-columns {
             display: flex;
             justify-content: space-between;
             gap: 40px;
             padding-bottom: 40px;
         }
    
         .footer-column {
             flex: 1;
         }
    
         .about-column {
             flex-basis: 35%;
         }
    
         .footer-logo {
             max-width: 160px;
             margin-bottom: 20px;
         }
    
         .footer-about-text {
             line-height: 1.6;
             margin-bottom: 20px;
         }
    
         .google-partner-badge img {
             width: 120px;
             padding: 5px;
         }
    
         .footer-column h3 {
             font-size: 18px;
             font-weight: 600;
             color: #333;
             margin-bottom: 20px;
             margin-top: 0;
         }
    
         .links-column ul {
             list-style: none;
             padding: 0;
             margin: 0;
         }
    
         .links-column li {
             margin-bottom: 12px;
         }
    
         .links-column a {
             text-decoration: none;
             color: #555;
             transition: color 0.2s ease;
         }
    
         .links-column a:hover {
             color: var(--primary-color);
         }
    
         .contact-info p {
             margin: 0 0 15px 0;
             line-height: 1.6;
         }
    
         .contact-info a {
             color: #555;
             text-decoration: none;
         }
    
         .contact-info a:hover {
             text-decoration: underline;
         }
    
         .social-icons .social-icon {
             display: inline-flex;
             align-items: center;
             justify-content: center;
             width: 36px;
             height: 36px;
             background-color: #222;
             color: #fff;
             border-radius: 4px;
             text-decoration: none;
             font-weight: bold;
         }
    
         .footer-bottom {
             border-top: 1px solid #e9e9e9;
             padding: 20px 0;
             text-align: center;
             font-size: 14px;
             color: #888;
         }
    
    
         @media (max-width: 992px) {
             .hero-section {
                 height: 800px;
             }
    
             .hero-content h1 {
                 font-size: 40px;
             }
    
             .hero-content p {
                 font-size: 16px;
             }
    
             .yakala-container {
                 flex-direction: column;
                 gap: 40px;
             }
    
             .image-column {
                 height: 350px;
                 width: 100%;
                 max-width: 500px;
             }
    
             .steps-wrapper {
                 flex-direction: column;
                 align-items: center;
                 gap: 50px;
             }
    
             .download-app-container {
                 flex-direction: column;
                 text-align: center;
             }
    
             .download-text-content {
                 flex-basis: 100%;
             }
    
             .download-badge-content {
                 justify-content: center;
                 flex-basis: 100%;
             }
    
             .footer-columns {
                 flex-wrap: wrap;
             }
    
             .footer-column {
                 flex-basis: 45%;
                 margin-bottom: 30px;
             }
    
             .about-column {
                 flex-basis: 100%;
             }
         }
    
    
         @media (max-width: 768px) {
             .hero-section {
                 height: 750px;
             }
    
             .hero-container {
                 padding-top: 100px;
             }
    
             .hero-content h1 {
                 font-size: 32px;
             }
    
             .search-bar {
                 flex-direction: column;
                 border-radius: 30px;
                 padding: 15px;
                 gap: 10px;
             }
    
             .search-bar .divider {
                 display: none;
             }
    
             .search-field {
                 width: 100%;
                 padding: 8px 0;
             }
    
             .search-btn {
                 width: 100%;
                 margin-left: 0;
                 padding: 14px;
             }
    
             #deals-search-bar .search-field {
                 padding: 15px 0;
             }
    
             .discover-deals-section {
                 padding: 60px 15px;
             }
    
             .what-is-yakala-section {
                 padding: 60px 15px;
             }
    
             .how-it-works-section {
                 padding: 60px 15px;
             }
    
             .download-app-section {
                 padding: 60px 15px;
             }
    
             h2,
             .discover-deals-section h2,
             .content-column h2,
             .how-it-works-container h2,
             .download-text-content h2 {
                 font-size: 28px;
             }
    
             .deals-grid {
                 grid-template-columns: 1fr;
                 gap: 20px;
             }
    
             .step-icon,
             .step-icon-2 {
                 max-width: 280px;
                 height: auto;
             }
    
             .download-image-content img {
                 max-width: 280px;
             }
    
             .download-badge-content {
                 align-items: center;
                 gap: 15px;
             }
    
             .footer-columns {
                 flex-direction: column;
                 gap: 20px;
             }
    
             .footer-column {
                 flex-basis: 100%;
                 margin-bottom: 20px;
             }
    
             .footer-column h3 {
                 margin-bottom: 15px;
             }
    
    
             .hero-section {
                 background-image: url('{{ asset(' images/menupage/restaurant-by-water-night-with-blue-lights (1).jpg') }}') !important;
             }
    
         }
    

