:root {
  --primary: #e67e22;
  --primary-dark: #d35400;
  --secondary: #2c3e50;
  --accent: #e67e22;
  --accent-light: #f39c12;
  --light: #f8f9fa;
  --dark: #333;
  --gray: #555;
  --white: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
  --radius: 12px;
}

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

body {
  font-family: 'BPG Glaho Sylfaen', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'BPG Nino Mtavruli', sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-title h2 span {
  color: var(--accent);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
  background-color: #e8f4ff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-content { animation: fadeInUp 1s ease-out; }
.hero-title { font-size: 2.75rem; margin-bottom: 1.5rem; }
.hero-title span { color: var(--accent); }
.hero-text { color: var(--gray); margin-bottom: 2rem; font-size: 1.2rem; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn i { margin-right: 0.5rem; }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--dark);
}

.feature-item i { color: var(--accent); }

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-out;
}

.hero-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.2);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.hero-image:hover img { transform: scale(1.05); }

.trust-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
  padding: 5rem 0;
  background-color: var(--white);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;          /* ცენტრში გამოსაყენებლად */
  text-align: center;      /* ტექსტისა და ელემენტების გასაწენტრად */
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 1rem;
}

.why-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--white);
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;          /* ცენტრში გამოსაყენებლად */
  text-align: center;      /* ტექსტისა და ელემენტების გასაწენტრად */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover { transform: translateY(-5px); }
.service-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--gray); }

/* How to Buy Section */
.how-to-buy {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 100%;
  margin: 0 auto;          /* ცენტრში გამოსაყენებლად */
  text-align: center;      /* ტექსტისა და ელემენტების გასაწენტრად */
}

.how-to-buy .section-title h2,
.how-to-buy .section-title p {
  color: var(--white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

.step-number { font-size: 3rem; font-weight: bold; margin-bottom: 1rem; opacity: 0.8; color: #fff;}
.step h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fff; }
.step p { font-size: 0.95rem; opacity: 0.9; color: #fff; }

/* Destinations Section */
.destinations {
  padding: 5rem 0;
  background-color: #f1f6fb;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img { transform: scale(1.08); }

.card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}

/* Special Offer Section */
.special-offer {
  padding: 1rem 0;
  background: #fff;
  color: var(--white);
}

.travel-bannero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  color: white;
  background: #000;
}

.travel-banner-imageo {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://xn----w2gafaradwfdev.xn--node/wp-content/uploads/2025/11/mahosadha-ong-9IvbEaivRYw-unsplash-scaled.jpg') 
    no-repeat center center;
  background-size: cover;
  filter: brightness(0.9);
  z-index: 0;
}

/* #1a3a52 80% → 0% */
.travel-banner-gradiento {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, 
    rgba(26, 58, 82, 0.8) 0%, 
    rgba(26, 58, 82, 0.0) 80%
  );
  z-index: 1;
}

.travel-banner-softo {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.travel-banner-contento {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
  text-align: left !important;
	color: #fff;
}

.travel-banner-titleo {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff !important;
	text-align: left !important;
}

.travel-banner-subtitleo {
  font-size: 1rem;
  opacity: 0.95;
  color: #fff !important;
	text-align: left !important;
}

.travel-banner-buttono {
  margin-top: 8px;
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: #e91e63;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.travel-banner-buttono:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  background-color: #f8f8f8;
}

/* რესპონსიულობა */
@media (max-width: 768px) {
  .travel-banner-titleo {
    font-size: 1.8rem;
  }
  .travel-banner-contento {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .travel-banner-titleo {
    font-size: 1.5rem;
  }
  .travel-banner-buttono {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Visa Section */
.visa-assistance {
  padding: 5rem 0;
  background-color: var(--white);
}

.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.visa-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.visa-list {
  list-style: none;
}

.visa-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.visa-list i {
  color: var(--accent);
  font-size: 1.3rem;
}

.visa-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visa-image img { width: 100%; height: auto; }

/* About Us Section */
.about-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img { width: 100%; height: auto; }

.about-text h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; opacity: 0.95; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.about-stat-number { font-size: 2rem; font-weight: bold; margin-bottom: 0.5rem; }

/* Reviews Section */
.reviews {
  padding: 5rem 10rem;
  background-color: #f1f6fb;
	width: 100%;
  max-width: 100%;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-list {
  max-width: 12000px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: var(--transition);
}

.faq-question:hover { background: var(--light); }
.faq-question h4 { margin: 0; font-size: 1.05rem; }
.faq-question i { color: var(--accent); font-size: 1.2rem; transition: var(--transition); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--gray);
  background: #f8f9fa;
}

.faq-answer.active { display: block; }

.faq-item.active .faq-question {
  background: var(--accent);
  color: var(--white);
}

.faq-item.active .faq-question h4 { color: var(--white); }
.faq-item.active .faq-question i { color: var(--white); }

/* Partners Section */
.airlines-logos {
  background: #f7f9fc; /* ღია ბექგრაუნდი */
  padding: 60px 0;
}

.airlines-logos .section-title h2 {
  font-size: 32px;
  margin-bottom: 5px;
  text-align: center;
}

.airlines-logos .section-title p {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 სვეტი */
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.airline-item {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.airline-item:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.airline-item img {
  max-height: 55px;
  max-width: 100%;
  object-fit: contain;
}

/* Affiliate Section */
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.affiliate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none; /* removes underline */
  color: inherit; /* keeps original color */
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.affiliate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #00a3ff;
}

.affiliate-icon {
  font-size: 45px;
  color: #00a3ff;
  margin-bottom: 10px;
}

.affiliate-card h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* Blog Section */
/* === BLOG Premium Section === */

.blog {
  padding: 5rem 0;
  background: #f7f7fb;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* === GLASS CARD === */
.blog-card {
  position: relative;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(125, 91, 234, 0.12);
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(125, 91, 234, 0.25);
}

/* === Image Hover Zoom === */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* === Content === */
.blog-content {
  padding: 1.6rem;
}

.blog-content h3 {
  color: #4c2ad1;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blog-content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.55rem;
}

/* === Premium Button Inside Card === */
.blog-content .read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #6c4bf3, #a77bff);
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(140, 110, 255, 0.25);
}

.blog-content .read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(140, 110, 255, 0.35);
}

/* === FEATURED CARD – ოქროს რგოლი === */
.blog-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35),
              0 12px 28px rgba(120, 80, 255, 0.25);
}

.blog-card.featured::before {
  content: "★ Featured";
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(255, 215, 0, 0.85);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}


/* Banner Section */
.banner-ad {
  padding: 3rem 0;
  background: var(--light);
}

.banner-slot {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slot p { font-size: 1.2rem; opacity: 0.8; }

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}

.newsletter-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.newsletter p { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.95; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.8rem 2rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--secondary); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'BPG Nino Mtavruli', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

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

@media (max-width: 992px) {
  .hero-container, .visa-grid, .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title, .section-title h2 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-buttons, .hero-features {
    flex-direction: column;
  }
}