/* =============================================================
   FlightLight — Inner Pages Stylesheet
   ============================================================= */

/* ---- Inner Page Hero ---- */
.fn-inner-hero {
  background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.fn-inner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.fn-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 100%);
}
.fn-inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.fn-inner-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  margin-top: 12px;
}
.fn-inner-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ---- Breadcrumb ---- */
.fn-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fn-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.fn-breadcrumb a:hover { color: #fff; }
.fn-breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---- About Page ---- */
.fn-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) { .fn-about-intro { grid-template-columns: 1fr; gap: 32px; } }
.fn-about-intro__text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}
.fn-about-intro__text p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}
.fn-about-intro__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  background: #e5e7eb;
}
.fn-about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fn-stats-section {
  background: #1a56db;
  padding: 60px 0;
  margin: 0;
}
.fn-stats-section .fn-stat__number { color: #fff; }
.fn-stats-section .fn-stat__label  { color: rgba(255,255,255,0.8); }
.fn-about-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .fn-about-services { grid-template-columns: 1fr; } }
.fn-about-service-card {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: center;
}
.fn-about-service-card__icon { font-size: 36px; margin-bottom: 12px; display: block; }
.fn-about-service-card__title { font-size: 17px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.fn-about-service-card__text  { font-size: 14px; color: #6b7280; line-height: 1.6; }
.fn-about-cta {
  text-align: center;
  padding: 64px 0;
  background: #f9fafb;
}
.fn-about-cta h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.fn-about-cta p  { font-size: 16px; color: #6b7280; margin-bottom: 28px; }

/* ---- Visa Detail Page ---- */
.fn-visa-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) { .fn-visa-detail { grid-template-columns: 1fr; } }
.fn-visa-country-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}
.fn-visa-country-header__flag { font-size: 64px; line-height: 1; }
.fn-visa-country-header__name { font-size: 28px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.fn-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fn-badge--schengen { background: #eff6ff; color: #1a56db; }
.fn-badge--premium  { background: #fef3c7; color: #92400e; }
.fn-visa-detail__intro { font-size: 16px; color: #374151; line-height: 1.8; margin-bottom: 32px; }
.fn-visa-section { margin-bottom: 32px; }
.fn-visa-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eff6ff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fn-visa-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
@media (max-width: 640px) { .fn-visa-list { grid-template-columns: 1fr; } }
.fn-visa-list li {
  font-size: 14px;
  color: #374151;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.fn-visa-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}
.fn-visa-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.fn-visa-info-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.fn-visa-info-card__icon { font-size: 24px; margin-bottom: 6px; display: block; }
.fn-visa-info-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; color: #6b7280; letter-spacing: 0.06em; margin-bottom: 4px; }
.fn-visa-info-card__value { font-size: 14px; font-weight: 700; color: #111827; }
.fn-visa-info-card__value--green { color: #059669; }
.fn-visa-cta-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.fn-visa-cta-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.fn-visa-cta-card p  { font-size: 14px; color: #6b7280; margin-bottom: 20px; line-height: 1.6; }

/* ---- Contact Page ---- */
.fn-contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) { .fn-contact-layout { grid-template-columns: 1fr; } }
.fn-contact-form { background: #fff; }
.fn-contact-info {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
}
.fn-contact-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.fn-contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.fn-contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fn-contact-info-item__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; margin-bottom: 4px; }
.fn-contact-info-item__value { font-size: 14px; color: #111827; line-height: 1.5; }
.fn-contact-info-item__value a { color: #1a56db; text-decoration: none; }
.fn-contact-info-item__value a:hover { text-decoration: underline; }
.fn-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
  transition: background 0.2s;
}
.fn-whatsapp-btn:hover { background: #1da851; color: #fff; text-decoration: none; }

/* ---- FAQ Accordion ---- */
.fn-faq-accordion { max-width: 800px; margin: 0 auto; }
.fn-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.fn-faq-item.open { box-shadow: 0 4px 16px rgba(26,86,219,0.08); border-color: #bfdbfe; }
.fn-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  gap: 16px;
  transition: background 0.15s;
}
.fn-faq-item.open .fn-faq-item__question { background: #eff6ff; color: #1a56db; }
.fn-faq-item__question:hover { background: #f9fafb; }
.fn-faq-item.open .fn-faq-item__question:hover { background: #eff6ff; }
.fn-faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
  position: relative;
}
.fn-faq-item__icon::before,
.fn-faq-item__icon::after {
  content: '';
  position: absolute;
  background: #6b7280;
  border-radius: 2px;
  transition: all 0.25s;
}
.fn-faq-item__icon::before { width: 12px; height: 2px; }
.fn-faq-item__icon::after  { width: 2px; height: 12px; }
.fn-faq-item.open .fn-faq-item__icon { background: #1a56db; transform: rotate(45deg); }
.fn-faq-item.open .fn-faq-item__icon::before,
.fn-faq-item.open .fn-faq-item__icon::after { background: #fff; }
.fn-faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  background: #fff;
}
.fn-faq-item.open .fn-faq-item__answer { display: block; }
.fn-faq-item__answer p { font-size: 15px; color: #374151; line-height: 1.8; margin: 0; }

/* ---- Blog Archive ---- */
.fn-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .fn-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fn-blog-grid { grid-template-columns: 1fr; } }
.fn-blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fn-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.fn-blog-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.fn-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fn-blog-card:hover .fn-blog-card__img { transform: scale(1.04); }
.fn-blog-card__img-placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, #1a56db, #1e429f); }
.fn-blog-card__body { padding: 20px; }
.fn-blog-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a56db;
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.fn-blog-card__title { font-size: 17px; font-weight: 700; color: #111827; margin-bottom: 10px; line-height: 1.4; }
.fn-blog-card__title a { color: inherit; text-decoration: none; }
.fn-blog-card__title a:hover { color: #1a56db; }
.fn-blog-card__excerpt { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 14px; }
.fn-blog-card__meta { display: flex; justify-content: space-between; font-size: 12px; color: #9ca3af; margin-bottom: 14px; }
.fn-blog-card__cta { font-size: 14px; font-weight: 600; color: #1a56db; text-decoration: none; }
.fn-blog-card__cta:hover { color: #1e429f; }

/* ---- Single Post ---- */
.fn-single-post { padding-bottom: 80px; }
.fn-single-post .fn-container { max-width: 760px; }
.fn-single-post__header { margin-bottom: 28px; }
.fn-single-post__title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; line-height: 1.25; color: #111827; margin: 14px 0 12px; }
.fn-single-post__meta { font-size: 14px; color: #6b7280; display: flex; align-items: center; gap: 10px; }
.fn-single-post__hero-img { width: 100%; border-radius: 12px; margin-bottom: 36px; aspect-ratio: 16/8; object-fit: cover; }
.fn-single-post__content { font-size: 17px; line-height: 1.85; color: #374151; }
.fn-single-post__content h2 { font-size: 26px; font-weight: 700; color: #111827; margin: 36px 0 16px; }
.fn-single-post__content h3 { font-size: 20px; font-weight: 700; color: #111827; margin: 28px 0 12px; }
.fn-single-post__content p  { margin-bottom: 20px; }
.fn-single-post__content ul, .fn-single-post__content ol { margin: 0 0 20px 24px; }
.fn-single-post__content li { margin-bottom: 8px; }
.fn-single-post__content blockquote {
  border-left: 4px solid #1a56db;
  padding: 16px 24px;
  margin: 28px 0;
  background: #eff6ff;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #1e429f;
}
.fn-single-post__footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid #e5e7eb; }

/* ---- Generic Page Content ---- */
.fn-page-content { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.fn-page-content h2 { font-size: 26px; font-weight: 700; color: #111827; margin: 36px 0 14px; }
.fn-page-content h3 { font-size: 20px; font-weight: 700; color: #111827; margin: 28px 0 10px; }
.fn-page-content p  { font-size: 16px; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.fn-page-content ul { margin: 0 0 20px 24px; }
.fn-page-content li { font-size: 16px; color: #374151; line-height: 1.8; margin-bottom: 6px; }
