        .arcweb-header_top_carrent {
            color: white;
            position: sticky;
            font-family:font-2;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            background: rgb(32 39 53 / 70%);
            /* border-bottom:1px solid#0CA74E; */
            /* margin-top: 49px; */
            float: left;
            width: 100%;
        }

        .arcweb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
@media (max-width: 1224px) {
.arcweb-container {
	width:95%;
}
}

@media (max-width: 880px) {
 .arcweb-container {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 0;
        }
}
        .arcweb-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            min-height: 100px;
        }

        .arcweb-logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .arcweb-logo-icon {
            font-size: 18px;
            font-weight: 700;
            background: #0CA74E;
            color: #0a1a2f;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .arcweb-logo-text {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff, #d4e0f0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .arcweb-nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .arcweb-nav-menu li a {
            color: #eef2ff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: 0.2s;
            /* text-align: center; */
            white-space: nowrap;
            padding: 6px 0;
            /* border-bottom: 2px solid transparent; */
            position: relative;
        }
 .arcweb-nav-menu li a:after{
     content:'';
     position: absolute;
     bottom: -34px;
     z-index: 99;
     background:#0CA74E;
     width: 0;
     left:40%;
 }
 .arcweb-nav-menu li:hover a:after{
     content:'';
     transition:all,.3s;
     border-radius:100px 100px 0 0;
     position: absolute;
     bottom: -34px;
     z-index: 99;
     background:#0CA74E;
     width:50%;
     height: 6px;
     left:25%;
 }



        .arcweb-nav-menu li a:hover {
            color: #0CA74E;
        }

        .arcweb-auth-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .arcweb-btn-outline-light {
            background: #121515;
            border: 1.5px solid #424343;
            color: #eef2ff;
            padding: 8px 10px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
        }

        .arcweb-btn-outline-light:hover {
            background: #0CA74E;
            color: #fff;
            border-color: #0CA74E;
        }

        .arcweb-btn-solid {
            background: #0CA74E;
            border: none;
            color: #FFF;
            padding:15px 15px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .arcweb-btn-solid:hover {
            background: #121515;
            transform: scale(1.02);
        }

        .arcweb-hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            gap: 6px;
            padding: 8px;
        }

        .arcweb-hamburger span {
            width: 28px;
            height: 2.5px;
            background: white;
            border-radius: 4px;
            transition: 0.2s;
        }

        .arcweb-mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s ease;
        }

        .arcweb-mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100%;
            background: #202735;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
            z-index: 2100;
            transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: flex;
            flex-direction: column;
            padding: 32px 24px;
            gap: 32px;
            overflow-y: auto;
        }

        .arcweb-mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2d3e5a;
            padding-bottom: 16px;
        }

        .arcweb-mobile-logo {
            font-size: 20px;
            font-weight: bold;
            display: flex;
            background: linear-gradient(135deg, #0ca74e, #1ec866);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            align-items: center;
        }

        .arcweb-close-menu {
            font-size: 32px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            line-height: 1;
        }

        .arcweb-mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .arcweb-mobile-nav-list li a {
            color: #f0f3fa;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: block;
            padding: 0;
            border-left: 3px solid transparent;
            transition: 0.2s;
        }

        .arcweb-mobile-nav-list li a:hover {
            border-left-color: #0ca74e;
            padding-left: 12px;
            color: #0ca74e;
        }

        .arcweb-mobile-auth {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            border-top: 1px solid #2d3e5a;
            padding-top: 24px;
        }

        .arcweb-mobile-auth .arcweb-btn-outline-light {
            text-align: center;
            background: transparent;
            color: #eef2ff;
        }

        .arcweb-mobile-auth .arcweb-btn-solid {
            text-align: center;
        }

        /* open state */
        .arcweb-mobile-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .arcweb-mobile-nav.open {
            right: 0;
        }

        /* prevent body scroll when menu open */
        body.arcweb-menu-open {
            overflow: hidden;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 880px) {
            .arcweb-nav-menu {
                display: none;
            }
            .arcweb-auth-buttons {
                display: none;
            }
            .arcweb-hamburger {
                display: flex;
            }
            .arcweb-navbar {
                justify-content: space-between;
            }
        }

        @media (min-width: 881px) {
            .arcweb-hamburger {
                display: none;
            }
            .arcweb-nav-menu {
                display: flex;
            }
            .arcweb-auth-buttons {
                display: flex;
            }
              .arcweb-nav-menu li{
                  text-align:center;
                  display: flex;
                  justify-content: space-around;
              }
        }
		






/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
   

        .section-container {
         max-width: 100%;
         background:url('../images/staryi-tbilisi-tbilisi-gruziia-krepost-narikala-tserkov-svia.jpg');
         display: flex;
         width: 100%;
         display: flex;
         overflow: hidden;
         margin: 0 auto;
         background-color: #111215;
         overflow: hidden;
         justify-content: space-around;
}
        

        .booking-layout {
         display: flex;
         width: 1280px;
         flex-direction: row;
        }

        .image-side {
           
        }

        .image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .overlay-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #111215 0%, rgba(17, 18, 21, 0.2) 55%, rgba(17, 18, 21, 0.6) 100%);
            pointer-events: none; 
            z-index: 1;
        }

        .image-caption {
            position: absolute;
            bottom: 24px;
            left: 24px;
            z-index: 2;
            color: white;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            font-size: 1rem;
            background: rgba(17,18,21,0.5);
            backdrop-filter: blur(4px);
            padding: 6px 14px;
            border-radius: 40px;
            pointer-events: none;
        }

        .booking-side {
                flex: 1 1 43%;
                flex-grow: 1;
                flex-shrink: 1;
                flex-basis: 40%;
                background-color: #111215f0;
                padding: 32px;
                max-width: 40%;
                display: flex;
                flex-direction: column;
                gap: 1.75rem;
                border-radius: 10px;
                margin: 40px 0;
                z-index: 99;
        }

        .booking-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
        }

        .form-row .form-group {
            flex: 1;
            min-width: 130px;
        }

         .form-group label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            color: #b0b3b8;
        }

        input, select {
            background-color: #1c1f24;
            border: 1px solid #2c2f36;
            border-radius: 18px;
            padding: 12px 16px;
            font-size: 0.95rem;
            font-size: 13px;
            color: #f0f2f5;
            font-family: inherit;
            transition: all 0.2s ease;
            outline: none;
        }

        input:focus, select:focus {
            border-color: #5e6f8d;
            box-shadow: 0 0 0 1px rgba(94, 111, 141, 0.3);
            background-color: #fff;
        }

        .checkbox-group {
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin: 0.25rem 0 0.5rem 0;
        }

        .checkbox-group label {
            text-transform: none;
            font-weight: 500;
            font-size: 0.9rem;
            color: #e3e6ec;
            cursor: pointer;
        }

        .checkbox-group input {
            width: 18px;
            height: 18px;
            accent-color: #3b82f6;
            cursor: pointer;
            margin: 0;
            padding: 0;
        }

        .return-location-field {
            transition: all 0.2s ease;
            max-height: 80px;
            opacity: 1;
            overflow: visible;
        }

        .return-location-field.hidden-location {
            display: none;
        }

        .search-btn {
            background: #2d65f0;
            border: none;
            border-radius: 40px;
            padding: 14px 20px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
            cursor: pointer;
            transition: all 0.25s;
            margin-top: 10px;
            font-family: inherit;
            box-shadow: 0 6px 14px rgba(45, 101, 240, 0.25);
        }

        .search-btn:hover {
            background: #1a4fcf;
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 900px) {
            .booking-layout {
                flex-direction: column;
            }
            .image-side, .booking-side {
                flex: auto;
                width: 100%;
            }
            .image-side {
                min-height: 320px;
            }
            .booking-side {
                padding: 28px 20px;
            }
            .section-container {
                border-radius: 28px;
            }
        }

        @media (max-width: 560px) {
          
            .booking-side {
                padding: 20px 16px;
            }
            .form-row {
                flex-direction: column;
                gap: 1rem;
            }
            .search-btn {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            label {
                font-size: 0.75rem;
            }
            input, select {
                padding: 10px 14px;
            }
        }

        /* small touches */
        hr {
            border-color: #2c2f36;
            margin: 0;
        }
        .title-booking {
            font-size: 1.6rem;
            font-weight: 600;
            color: white;
            font-family: 'font-3';
            margin-bottom: 0.25rem;
        }
        .subtitle {
            font-size: 0.8rem;
            color: #8e9199;
            margin-top: 0.4rem;
            margin-bottom: 0.8rem;
        }
		
		/**************************************************************************/
		/**************************************************************************/
		/**************************************************************************/
		/**************************************************************************/
  .search-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 27px 0;
    position: relative;
    float:left;
    width:100%;
    z-index: 9;
  }



  .search-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

@media (max-width:1224px) {
  .search-container {
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 880px) {
 .search-container {width:95%;}
}

   .search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
    font-family: Arial, sans-serif;
  }

  .search-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 170px;
  }

  .search-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .search-input {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .search-input:focus {
    border-color: #3182ce;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
  }

  .checkbox-field {
    flex-direction: row;
    align-items: center;
    margin-top: 35px;
    min-width: max-content;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
  }

  .checkbox-container input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  .button-field {
    margin-top: 25px;
    min-width: 150px;
  }

  .search-button {
    width: 100%;
    background-color: #0ca74e;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
  }

  .search-button:hover { background-color: #2b6cb0; }
  .search-button:active { transform: scale(0.98); }
  .custom-dropdown { position: relative; }
  .dropdown-list {
    position: fixed; 
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    padding: 0;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 99999; 
    box-sizing: border-box;
  }

  .dropdown-list.show { display: block; }

  .dropdown-list li {
    padding: 10px 11px;
    cursor: pointer;
    font-size: 12px;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .dropdown-list li:last-child { border-bottom: none; }
  .dropdown-list li:hover {background-color: #ebf8ff;color: #0ca74e;}