@font-face {
    font-family: 'MyCustomFont';
    src: url('https://xn----w2gafaradwfdev.xn--node/wp-content/uploads/fonts/bpg-nino-mtavruli-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('https://xn----w2gafaradwfdev.xn--node/wp-content/uploads/fonts/bpg-nino-mtavruli-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #4a90e2;
    --text-color: #1a3a52;
    --bg-color: #ffffff;
    --light-bg: #f8fbff;
    --border-color: #e8f0f7;
    --accent-hover: #357abd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body, h1, h2, h3, p, .logo, .destination-info, .feature, .service-card, .blog-content, .about-content, .stat, .promo-banner, .faq-section, .home-cheap {
    font-family: 'MyCustomFont', sans-serif;
    color: var(--text-color);
}

body {
    line-height: 1.6;
    background: var(--bg-color);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.floating-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--bg-color) 100%);
    padding: 50px 2rem 50px;
    text-align: center;
    margin-top: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #5a7a92;
    animation: fadeInUp 1.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a3a52;
    margin-top: 10px;
}

.hero-call-btn {
    display: none;
}

.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    animation: fadeInUp 1.4s;
}

.destination-card {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
}

.destination-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-info {
    padding: 1.2rem;
}

.destination-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 40px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Why Us Section */
.why-us {
    background: var(--light-bg);
}

.why-us h2 {
    font-size: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    color: #5a7a92;
}
.alert-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #fff;
    padding: 15px 20px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ff4d4d;
    border-radius: 8px;
    overflow: hidden;
}

.alert-banner .alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* რეზპონსიულობისთვის */
    gap: 60px;
}

.alert-banner .alert-icon {
    font-size: 20px;
}

.alert-banner .alert-text {
    font-size: 16px;
}

.alert-banner .alert-btn {
    background-color: #fff;
    color: #ff4d4d;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alert-banner .alert-btn:hover {
    background-color: #ff4d4d;
    color: #fff;
    border: 1px solid #fff;
    
}

/* ===============================
   ჩვენი სერვისები (Services Section)
================================== */

.services-section {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.services-section .section-title {
    font-family: "BPG Nino Mtavruli", sans-serif;
    font-size: 28px;
    color: #1a3a52;
    margin-bottom: 40px;
}

/* --- GRID Layout --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 სვეტი */
    gap: 25px;
    justify-items: center;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* ტაბლეტზე 2 */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* მობილურზე 1 */
    }
}

/* --- CARD --- */
.service-card {
    background: #fff;
    border: 1px solid #e8f0f7;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 350px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* --- HEADER: იკონი + სათაური ერთ ხაზზე --- */
.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.service-title {
    font-family: "BPG Nino Mtavruli", sans-serif;
    font-size: 20px;
    color: #1a3a52;
    margin: 0;
}

/* --- ტექსტი --- */
.service-excerpt {
    font-size: 15px;
    color: #44596e;
    line-height: 1.6;
}

/* --- Hover ეფექტის გამოკვეთა სათაურზე --- */
.service-card:hover .service-title {
    color: #4a90e2;
}

/* --- Responsive გაუმჯობესებები --- */
@media (max-width: 768px) {
    .service-card {
        max-width: 100%;
        padding: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }

    .services-section .section-title {
        font-size: 24px;
    }

    .service-excerpt {
        font-size: 14px;
    }
}


/* Blog Section */
.blog h2 {
    font-size: 2rem;
}

.blog {
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content p {
    color: #5a7a92;
}

.blog-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    max-width: 1300px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 30px;
    font-family: 'bpg nino mtavruli', Arial, sans-serif;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a3a52;
    font-size: 28px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2c5aa0;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s;
    color: #333;
    font-size: 16px;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #2c5aa0;
    color: white;
}

.faq-item.active .faq-question::after {
    content: '-';
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* მობილური ვერსია */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-question::after {
        font-size: 18px;
    }
}

/* პლანშეტის ვერსია */
@media (max-width: 1024px) and (min-width: 769px) {
    .faq-section {
        max-width: 90%;
        padding: 25px;
    }
}

/* ანიმაცია FAQ ელემენტებისთვის */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.3s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

/* About Section */

.about h2 {
    font-size: 2rem;
}

.about {
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a7a92;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.stat:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* How to Buy */
.how-to-buy {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.how-to-buy h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.image-content {
    flex: 1;
    max-width: 500px;
}

.how-to-buy-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-hover) 100%);
    color: var(--bg-color);
    text-align: center;
    padding: 60px 2rem;
    margin: 50px 20px;
    border-radius: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.promo-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-color);
}

.promo-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--bg-color);
}

.promo-icon {
    color: var(--bg-color);
    margin-right: 0.5rem;
}

.promo-btn {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.promo-btn:hover {
    transform: scale(1.05);
}

/* Cheap Tickets Section */
.home-cheap h2 {
    font-size: 2rem;
}

.home-cheap {
    background: var(--light-bg);
}

.home-cheap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.home-cheap-card h3 {
    font-size: 1rem;
    text-align: left;
}

/* კონტეინერი */
.shefasebebi h2 {
    font-size: 2rem;
}

.shefasebis-dawera {
    position: relative;
    display: flex;
    justify-content: flex-end;
    font-family: sans-serif;
}

/* ღილაკი */
.shefasebis-dawera {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #f9f9f9;
    gap: 10px;
    border-radius: 10px;
    padding: 9px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.avg-rating {
    display: flex;
    background: #1a3a52;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
    padding: 9px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.avg-rating .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-actions {
    position: relative;
}

.review-btn {
    background: #1a3a52;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.review-btn:hover {
    background: #1a3a52;
}

/* Dropdown */
.dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    min-width: 200px;
}

.dropdown a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown a:hover {
    background: #f2f2f2;
}

/* ღილაკის hover-ზე dropdown გამოჩენა */
.review-actions:hover .dropdown {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .destinations-showcase {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cheap-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-to-buy {
        padding: 40px 30px;
    }

    .how-to-buy h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .text-content,
    .image-content {
        max-width: 90%;
        text-align: center;
    }

    .text-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .how-to-buy-image {
        width: 100%;
        border-radius: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 20px 1rem 60px;
    }
    
    .hero-content {
    position: relative;
    overflow: hidden;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-image: url('https://xn----w2gafaradwfdev.xn--node/wp-content/uploads/2025/10/jennvmy_-uWpggIb3iHs-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* გამუქების ფენა */
    z-index: 1;
}

.hero-content * {
    position: relative;
    z-index: 2;
    color: #fff; /* ტექსტი თეთრად */
}


    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        color: #fff;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .hero-call-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 25px;
        background-color: #4a90e2;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s;
    }

    .hero-call-btn:hover {
        background-color: #357abd;
    }

    .destinations-showcase {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .home-cheap-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .promo-banner {
        margin-left: 20px;
        margin-right: 20px;
    }

    .promo-banner h2 {
        font-size: 1.8rem;
    }

    .promo-banner p {
        font-size: 1rem;
    }

    .floating-call-btn {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 60px;
        border-radius: 0;
        font-size: 1.5rem;
        justify-content: center;
        gap: 0.5rem;
    }

    .floating-call-btn::after {
        content: 'დაგვირეკეთ';
        font-size: 1rem;
        font-weight: bold;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .text-content, .image-content {
        max-width: 100%;
    }

    .how-to-buy {
        padding: 30px 20px;
    }

    .how-to-buy h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .text-content {
        text-align: center;
        max-width: 100%;
    }

    .text-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .image-content {
        max-width: 100%;
    }

    .how-to-buy-image {
        width: 100%;
        border-radius: 10px;
        box-shadow: none;
    }
    
    .avg-rating {
        width: 100%;
        justify-content: center; /* ტექსტი და იკონი ცენტრში */
        box-sizing: border-box;
        padding: 1px;
    }
    
    .review-actions {
        width: 100%;
        justify-content: center; /* ტექსტი და იკონი ცენტრში */
        box-sizing: border-box;
    }

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}