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

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:white;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:90px 8%;
}

h2{
    font-size:42px;
    text-align:center;
    margin-bottom:15px;
    color:#d4af37;
}

.section-subtitle {
    text-align: center;
    color: #bbb;
    margin-bottom: 40px;
    font-size: 16px;
}

/* LOADER */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b0b0b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(212,175,55,0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

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

/* NAVBAR */
nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(12px);
    z-index:1000;
    transition:.4s;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#d4af37;
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav ul li a{
    transition:.3s;
    font-weight:500;
}

nav ul li a:hover{
    color:#d4af37;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CURRENCY SWITCHER */
.currency-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.currency-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.currency-btn.active {
    background: #d4af37;
    color: #000;
}

.lang-switch {
    display: flex;
    gap: 5px;
}

.language-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: .3s;
}

.language-btn:hover,
.language-btn.active {
    background: #d4af37;
    color: #000;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 26px;
    cursor: pointer;
}

/* HERO HEADER */
header{
    height:100vh;
    background: linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url("https://pohcdn.com/sites/default/files/styles/big_gallery_image/public/text_gallery/Tbilisi-4.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.overlay{
    max-width:850px;
    padding:20px;
    animation:fadeUp 1.2s;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #d4af37;
    backdrop-filter: blur(5px);
}

.overlay h1{
    font-size:60px;
    margin-bottom:20px;
}

.overlay p{
    font-size:22px;
    color:#ddd;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    padding:18px 45px;
    background:#d4af37;
    color:#000;
    font-weight:bold;
    border-radius:50px;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px #d4af37;
}

/* TRUST / STATS SECTION */
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
    background: #111;
    text-align: center;
    flex-wrap: wrap;
}

.stat-card {
    background: #1c1c1c;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 200px;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-card p {
    color: #aaa;
    font-size: 0.9rem;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    text-align: center;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 0 35px rgba(212,175,55,.35);
}

.card img{
    height:230px;
    width:100%;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
    font-size:24px;
}

.card p{
    padding:4px 20px;
    color:#ddd;
}

.stars {
    color: #d4af37;
    font-size: 22px;
    margin: 15px 0 5px;
}

.price{
    font-size:26px;
    font-weight:bold;
    color:#d4af37;
    padding-top:15px;
}

.card button{
    margin:20px;
    width:calc(100% - 40px);
    padding:15px;
    border:none;
    background:#d4af37;
    color:black;
    font-size:17px;
    font-weight:bold;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.card button:hover{
    background:white;
}

.card.selected-card {
    border: 2px solid #d4af37 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* DAY TOURS SECTION */
.tour-selector {
    text-align: center;
    margin-bottom: 30px;
}

.tour-selector label {
    font-size: 18px;
    margin-right: 12px;
    color: #ddd;
}

.tour-selector select {
    width: auto;
    display: inline-block;
    padding: 10px 18px;
    background: #1f1f1f;
    border: 1px solid #d4af37;
}

.tour-card {
    padding-bottom: 10px;
}

.tour-route {
    font-size: 14px;
    color: #d4af37 !important;
    line-height: 1.5;
}

/* Custom Tour Box */
.custom-tour-box {
    margin-top: 50px;
    background: linear-gradient(135deg, #181818 0%, #252210 100%);
    border: 1px dashed #d4af37;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-tour-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-tour-content i {
    font-size: 45px;
    color: #d4af37;
}

.custom-tour-text h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}

.custom-tour-text p {
    color: #aaa;
    font-size: 15px;
}

.custom-tour-btn {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
}

.custom-tour-btn:hover {
    background: #1ebd57;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.features div{
    padding:35px;
    background:#151515;
    border-radius:18px;
    transition:.3s;
}

.features div:hover{
    transform:scale(1.05);
}

.features i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:20px;
}

.features h3{
    font-size:20px;
    margin-bottom: 8px;
}

.features p {
    font-size: 13px;
    color: #888;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    height:300px;
    width:100%;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #141414;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #1a1a1a;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #141414;
    color: #bbb;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* BOOKING FORM & EXTRAS */
form{
    max-width:700px;
    margin:auto;
    background:#141414;
    padding:40px;
    border-radius:25px;
}

input,
select{
    width:100%;
    padding:16px;
    margin:12px 0;
    background:#222;
    border:none;
    border-radius:10px;
    color:white;
    font-size:16px;
}

.extras-box {
    margin: 20px 0;
    padding: 15px;
    background: #1c1c1c;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.extras-title {
    display: block;
    font-size: 15px;
    color: #d4af37;
    margin-bottom: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
    cursor: pointer;
}

.total-box {
    margin: 15px 0;
    font-size: 20px;
    text-align: center;
    color: #ddd;
}

#total {
    color: #d4af37;
    font-weight: bold;
    font-size: 28px;
}

button[type="submit"]{
    width:100%;
    padding:18px;
    margin-top:10px;
    border:none;
    border-radius:12px;
    background:#d4af37;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button[type="submit"]:hover{
    background:white;
}

.form-notice {
    text-align: center;
    margin-top: 12px;
    color: #25d366;
    font-size: 14px;
}

/* CONTACT & FOOTER */
#contact {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 40px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* FLOATING SOCIAL BAR */
.social-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-bar a {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.2);
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #d4af37;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.social-bar a:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.1);
}

/* LIGHTBOX MODAL */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* BACK TO TOP BUTTON */
.top-btn {
    position: fixed;
    bottom: 110px;
    right: 25px;
    z-index: 998;
    background: #d4af37;
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
}

.top-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* FLOATING WHATSAPP CHAT WIDGET */
.wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-bubble {
    background: #111;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid #25d366;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25d366;
    animation: pulse 1.5s infinite;
}

.wa-bubble strong {
    color: #25d366;
    display: block;
}

.wa-btn {
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: 0.3s ease;
    text-decoration: none;
}

.wa-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

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

/* RESPONSIVE DESIGN (MOBILE OPTIMIZATION) */
@media (max-width: 768px) {
    .overlay h1 { font-size: 34px; }
    .overlay p { font-size: 15px; }

    nav { padding: 12px 4%; }
    .logo { font-size: 18px; }
    .nav-right { gap: 6px; }

    .menu-btn { display: block; }

    nav ul {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transition: 0.4s ease;
    }

    nav ul.active { left: 0; }

    .custom-tour-box {
        flex-direction: column;
        text-align: center;
    }
    .custom-tour-content {
        flex-direction: column;
    }

    .social-bar { right: 10px; }
    .social-bar a { width: 36px; height: 36px; font-size: 15px; }

    /* Mobile Floating Overlap Fix */
    .top-btn {
        bottom: 85px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .wa-widget {
        bottom: 15px;
        right: 15px;
    }
    .wa-bubble {
        display: none; /* Hide text bubble on mobile screens to avoid overlap */
    }
}