/*
Theme Name: Travel Agency
Description: Custom travel agency theme
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root
{
  --blue-deep: #0a2342;
  --blue-mid: #1a4f8a;
  --blue-bright: #2178c4;
  --blue-light: #e8f2fb;
  --gold: #c9a84c;
  --gold-light: #f5e6c0;
  --white: #ffffff;
  --gray-light: #f4f7fa;
  --gray-mid: #9ab0c4;
  --gray-text: #4a6278;
  --dark: #0d1f2d;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --shadow-card: 0 4px 24px rgba(10, 35, 66, 0.10);
  --shadow-hover: 0 12px 40px rgba(10, 35, 66, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html
{
  scroll-behavior: smooth;
}

body
{
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

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

.container
{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn
{
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover
{
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

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

.btn-outline:hover
{
  background: var(--white);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

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

.btn-blue:hover
{
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 120, 196, 0.35);
}

/* ── TOP BAR ── */
.top-bar
{
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner
{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-contact
{
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link
{
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.top-bar-link:hover
{
  color: var(--white);
}

.top-bar-icon
{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-social
{
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-bar-social-link
{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.70);
  border-radius: 6px;
  transition: var(--transition);
}

.top-bar-social-link:hover
{
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.top-bar-social-link svg
{
  width: 15px;
  height: 15px;
}

/* ── HEADER ── */
.site-header
{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10, 35, 66, 0.08);
}

.header-inner
{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo
{
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo a
{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img
{
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text
{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}

.site-nav ul
{
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.site-nav a
{
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--blue-deep);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.site-nav a:hover
{
  color: var(--blue-bright);
  background: var(--blue-light);
}

/* Current page — filled pill */
.site-nav .current-menu-item>a,
.site-nav .current_page_item>a,
.site-nav .current-menu-ancestor>a
{
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 600;
}

.site-nav .current-menu-item>a:hover,
.site-nav .current_page_item>a:hover,
.site-nav .current-menu-ancestor>a:hover
{
  background: var(--blue-mid);
  color: var(--white);
}

.site-nav .nav-cta a
{
  background: var(--blue-bright);
  color: var(--white);
  font-weight: 600;
  padding: 9px 20px;
}

.site-nav .nav-cta a:hover
{
  background: var(--blue-mid);
  color: var(--white);
}

.site-nav .nav-cta.current-menu-item>a,
.site-nav .nav-cta.current_page_item>a
{
  background: var(--blue-deep);
  color: var(--white);
}

/* Hamburger */
.nav-toggle
{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  font-size: 1rem;
  align-items: center;
  justify-content: center;
}

.burger-icon
{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger-icon span
{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.close-icon
{
  display: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--blue-deep);
}

/* When open, X is white on blue dropdown */
.nav-toggle.is-open .close-icon
{
  color: var(--white);
}

.nav-toggle.is-open .burger-icon
{
  display: none;
}

.nav-toggle.is-open .close-icon
{
  display: block;
}

/* ── HERO ── */
.hero
{
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-bg
{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom
{
  from
  {
    transform: scale(1.04);
  }

  to
  {
    transform: scale(1.10);
  }
}

/* When no image: deep blue gradient overlay */
.hero-overlay
{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.72) 0%, rgba(26, 79, 138, 0.45) 100%);
}

/* When image present: light grey overlay so text stays readable */
.hero.has-image .hero-overlay
{
  background: rgba(10, 25, 50, 0.42);
}

.hero-content
{
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp
{
  from
  {
    opacity: 0;
    transform: translateY(32px);
  }

  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge
{
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1
{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(10, 35, 66, 0.3);
}

.hero h1 em
{
  font-style: italic;
  color: var(--white);
}

.hero p
{
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(10, 35, 66, 0.25);
}

.hero-buttons
{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SECTION HEADER ── */
.section-header
{
  text-align: center;
  margin-bottom: 52px;
}

.section-label
{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

.section-header h2
{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.22;
}

.section-header p
{
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PACKAGE CARD ── */
.packages-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.package-card
{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover
{
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image
{
  position: relative;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.package-card:hover .card-image img
{
  transform: scale(1.06);
}

.card-price-badge
{
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 50px;
}

.card-body
{
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h3
{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p
{
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.card-link
{
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-link::after
{
  content: '→';
  transition: var(--transition);
}

.card-link:hover
{
  color: var(--blue-mid);
}

.card-link:hover::after
{
  transform: translateX(4px);
}

/* ── PACKAGES RESULTS COUNT ── */
.packages-results-bar
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8f0f8;
}

.packages-results-count
{
  font-size: 0.92rem;
  color: var(--gray-text);
}

.packages-results-count strong
{
  color: var(--blue-deep);
  font-weight: 700;
}

/* ── PACKAGE ARCHIVE EXTRAS ── */
.card-image-link
{
  display: block;
}

.card-image-placeholder
{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--blue-light);
}

.card-days-badge
{
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.card-passport-badge
{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 35, 66, 0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.card-price-row
{
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.card-price-label
{
  font-size: 0.82rem;
  color: var(--gray-mid);
  font-weight: 500;
}

.card-price
{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-deep);
  font-family: var(--font-display);
}

.card-price-original
{
  font-size: 0.95rem;
  color: var(--gray-mid);
  text-decoration: line-through;
  font-weight: 500;
}

.card-price-discount
{
  font-size: 1.5rem;
  font-weight: 700;
  color: #e03131;
  font-family: var(--font-display);
}

.card-discount-badge
{
  display: inline-block;
  background: #fff0f0;
  color: #e03131;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid #ffc9c9;
  align-self: center;
}

.card-cta
{
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.92rem;
}

/* Packages pagination */
.packages-pagination
{
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.packages-pagination .page-numbers
{
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.packages-pagination .page-numbers li a,
.packages-pagination .page-numbers li span
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  border: 1.5px solid #d0dce8;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.packages-pagination .page-numbers li a:hover,
.packages-pagination .page-numbers li span.current
{
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}

/* ── SINGLE PACKAGE ── */
.sp-hero
{
  width: 100%;
  overflow: hidden;
  background: var(--blue-light);
  height: 420px;
}

.sp-hero-img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

@media (max-width: 1024px)
{
  .sp-hero
  {
    height: auto;
  }

  .sp-hero-img
  {
    height: auto;
    max-height: none;
  }
}

/* Title bar below hero */
.sp-title-bar
{
  background: var(--white);
  border-bottom: 1px solid #e8f0f8;
  padding: 28px 0;
  box-shadow: 0 2px 12px rgba(10, 35, 66, 0.06);
}

.sp-title-bar-inner
{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.sp-title-bar-left
{
  flex: 1;
  min-width: 0;
}

.sp-title-bar-right
{
  flex-shrink: 0;
  text-align: right;
}

.sp-days-badge
{
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  border: 1px solid #c5daf0;
}

.sp-title-bar-left h1
{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--blue-deep);
  line-height: 1.25;
  margin-bottom: 10px;
}

.sp-passport-inline
{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-top: 4px;
}

.sp-price-wrap
{
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
}

.sp-price-label
{
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.sp-price
{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.sp-price-original
{
  font-size: 1.2rem;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.sp-price-discount
{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #e03131;
}

/* Layout */
.sp-section
{
  padding: 48px 0 80px;
}

.sp-layout
{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.sp-block
{
  margin-bottom: 48px;
}

.sp-block-title
{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
}

.sp-content
{
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.85;
}

.sp-content p
{
  margin-bottom: 16px;
}

.sp-content ul,
.sp-content ol
{
  padding-left: 24px;
  margin-bottom: 16px;
}

.sp-content li
{
  margin-bottom: 8px;
}

/* Include / Exclude */
.sp-inc-exc-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sp-inc-exc-card
{
  border-radius: 14px;
  padding: 24px;
  border: 1.5px solid;
}

.sp-include
{
  background: #f0faf4;
  border-color: #a8d5b5;
}

.sp-exclude
{
  background: #fff5f5;
  border-color: #f5b8b8;
}

.sp-inc-exc-title
{
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-include .sp-inc-exc-title
{
  color: #2d7a4e;
}

.sp-exclude .sp-inc-exc-title
{
  color: #c0392b;
}

.sp-inc-exc-icon
{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sp-include .sp-inc-exc-icon
{
  background: #2d7a4e;
  color: white;
}

.sp-exclude .sp-inc-exc-icon
{
  background: #c0392b;
  color: white;
}

.sp-inc-exc-content
{
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-text);
}

.sp-inc-exc-content p
{
  margin-bottom: 8px;
}

.sp-inc-exc-list
{
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-inc-exc-list li
{
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.5;
  font-weight: 600;
}

.sp-list-check
{
  width: 20px;
  height: 20px;
  background: #2d7a4e;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-list-cross
{
  width: 20px;
  height: 20px;
  background: #c0392b;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Gallery */
.sp-gallery
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sp-gallery-item
{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}

.sp-gallery-item img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sp-gallery-item:hover img
{
  transform: scale(1.06);
}

.sp-gallery-overlay
{
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 66, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.sp-gallery-item:hover .sp-gallery-overlay
{
  opacity: 1;
}

/* Sidebar */
.sp-sidebar-card
{
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid #d0dce8;
  padding: 28px;
  position: sticky;
  top: 96px;
}

.sp-sidebar-price
{
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8f0f8;
}

.sp-sidebar-price .sp-price-label
{
  font-size: 0.85rem;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 4px;
}

.sp-sidebar-amount
{
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.sp-sidebar-original
{
  font-size: 1.3rem;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.sp-sidebar-discount
{
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #e03131;
}

.sp-sidebar-meta-item
{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 0.92rem;
  color: var(--gray-text);
  font-weight: 500;
}

.sp-sidebar-meta-icon
{
  font-size: 1.1rem;
}

.btn-gold
{
  background: var(--gold);
  color: var(--blue-deep);
}

.btn-gold:hover
{
  background: #b8922f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-blue
{
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

/* Lightbox */
.sp-lightbox
{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.sp-lightbox.active
{
  display: flex;
}

.sp-lightbox-overlay
{
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.95);
  cursor: pointer;
}

.sp-lightbox-img-wrap
{
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-lightbox-img-wrap img
{
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.sp-lightbox-close,
.sp-lightbox-prev,
.sp-lightbox-next
{
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sp-lightbox-close:hover,
.sp-lightbox-prev:hover,
.sp-lightbox-next:hover
{
  background: rgba(255, 255, 255, 0.25);
}

.sp-lightbox-close
{
  top: 20px;
  right: 20px;
}

.sp-lightbox-prev
{
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sp-lightbox-next
{
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.single-package
{
  padding: 64px 0 80px;
}

.package-hero-image
{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.package-meta
{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.package-price-tag
{
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 10px 24px;
  border-radius: 50px;
}

.package-title
{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 24px;
  line-height: 1.22;
}

.package-content
{
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 760px;
}

.package-content p
{
  margin-bottom: 16px;
}

.back-link
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 36px;
  transition: var(--transition);
}

.back-link:hover
{
  color: var(--blue-mid);
  gap: 12px;
}

/* ── SECTIONS ── */
.section
{
  padding: 80px 0;
}

.section-light
{
  background: var(--gray-light);
}

.section-blue
{
  background: var(--blue-deep);
  color: var(--white);
}

.section-blue .section-header h2
{
  color: var(--white);
}

.section-blue .section-header p
{
  color: rgba(255, 255, 255, 0.7);
}

.section-blue .section-label
{
  color: var(--gold);
}

/* ── HOW IT WORKS STEPS ── */
.steps-list
{
  max-width: 680px;
  margin: 0 auto;
}

.step-item
{
  position: relative;
  text-align: center;
  padding: 48px 24px;
  border-bottom: 1px solid #e0eaf4;
  overflow: hidden;
}

.step-item:last-child
{
  border-bottom: none;
}

.step-ghost-number
{
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--blue-bright);
  opacity: 0.08;
  line-height: 1;
  user-select: none;
  z-index: 0;
  pointer-events: none;
}

.step-content
{
  position: relative;
  z-index: 1;
}

.step-label
{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

.step-title
{
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.step-desc
{
  font-size: 0.97rem;
  color: var(--gray-text);
  line-height: 1.75;
}

/* ── WHY US ── */
.why-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 32px;
}

.why-card
{
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover
{
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-icon
{
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-card h4
{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p
{
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ── CTA STRIP ── */
.cta-strip
{
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2
{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip p
{
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ── CONTACT ── */
.contact-grid
{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3
{
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.contact-info>p
{
  color: var(--gray-text);
  line-height: 1.7;
}

.contact-item
{
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.97rem;
  color: var(--gray-text);
}

.contact-icon
{
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── FRONT PAGE BLOG PREVIEW ── */
.fp-blog-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

@media (min-width: 769px)
{

  /* First card is larger - spans full height on left */
  .fp-blog-grid
  {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }

  .fp-blog-card:first-child
  {
    grid-row: 1 / 3;
  }

  .fp-blog-card:first-child .fp-blog-image
  {
    height: auto;
  }

  .fp-blog-card:first-child h3
  {
    font-size: 1.35rem;
  }
}

.fp-blog-card
{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fp-blog-card:hover
{
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.fp-blog-image-link
{
  display: block;
}

.fp-blog-image
{
  overflow: hidden;
  background: var(--blue-light);
  flex-shrink: 0;
}

.fp-blog-image img
{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.fp-blog-card:hover .fp-blog-image img
{
  transform: scale(1.06);
}

.fp-blog-placeholder
{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.fp-blog-body
{
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fp-blog-date
{
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.fp-blog-body h3
{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin-bottom: 14px;
  line-height: 1.35;
  flex: 1;
}

.fp-blog-body h3 a
{
  color: inherit;
  transition: var(--transition);
}

.fp-blog-body h3 a:hover
{
  color: var(--blue-bright);
}

.fp-blog-body p
{
  display: none;
}

/* ── SERVICES TEASER ── */
.services-teaser-grid
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-teaser-card
{
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}

.services-teaser-card:hover
{
  border-color: var(--blue-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.services-teaser-icon
{
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.services-teaser-card h4
{
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.services-teaser-card p
{
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── STICKY CTA ── */
.sticky-cta
{
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible
{
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta-btn
{
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-deep);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(10, 35, 66, 0.3);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.sticky-cta-btn:hover
{
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 35, 66, 0.35);
}

.sticky-cta-viber
{
  background: #7360f2;
}

.sticky-cta-viber:hover
{
  background: #5b4cc4;
}

.sticky-cta-icon
{
  font-size: 1rem;
}

/* On desktop hide the text labels, show icon only */
@media (min-width: 641px)
{
  .sticky-cta-text
  {
    display: inline;
  }
}

/* ── PRIVACY POLICY ── */
.privacy-layout
{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 52px;
  align-items: start;
}

.privacy-toc-card
{
  background: var(--white);
  border: 1.5px solid #d0dce8;
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 96px;
}

.privacy-toc-card h4
{
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8f0f8;
}

.privacy-toc-card ul
{
  list-style: none;
}

.privacy-toc-card li
{
  margin-bottom: 8px;
}

.privacy-toc-card a
{
  font-size: 0.88rem;
  color: var(--gray-text);
  transition: var(--transition);
  display: block;
  padding: 4px 8px;
  border-radius: 6px;
}

.privacy-toc-card a:hover
{
  color: var(--blue-bright);
  background: var(--blue-light);
}

.privacy-intro
{
  background: var(--blue-light);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
}

.privacy-section
{
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8f0f8;
}

.privacy-section:last-child
{
  border-bottom: none;
}

.privacy-section h2
{
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-number
{
  width: 32px;
  height: 32px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section p
{
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-section ul
{
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}

.privacy-section ul li
{
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.97rem;
  color: var(--gray-text);
  border-bottom: 1px solid #f0f4f8;
  line-height: 1.65;
}

.privacy-section ul li::before
{
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
}

.privacy-highlight
{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0faf4;
  border: 1.5px solid #a8d5b5;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #2d7a4e;
  font-weight: 500;
}

.privacy-highlight p
{
  margin: 0;
  color: #2d7a4e;
}

.privacy-rights-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.privacy-right
{
  background: var(--gray-light);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.privacy-right-icon
{
  font-size: 1.6rem;
}

.privacy-right strong
{
  font-size: 0.9rem;
  color: var(--blue-deep);
}

.privacy-right span
{
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.4;
}

.privacy-contact
{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.privacy-contact-item
{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--gray-text);
  font-weight: 500;
  padding: 12px 16px;
  background: var(--gray-light);
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
}

a.privacy-contact-item:hover
{
  background: var(--blue-light);
  color: var(--blue-bright);
}

/* ── BLOG ── */
.blog-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card
{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover
{
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image-link
{
  display: block;
}

.blog-card-image
{
  height: 220px;
  overflow: hidden;
  background: var(--blue-light);
}

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

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

.blog-card-image-placeholder
{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--blue-light);
}

.blog-card-body
{
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta
{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-date
{
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-weight: 500;
}

.blog-cat
{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-light);
  color: var(--blue-bright);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-cat-white
{
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.blog-card-body h3
{
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}

.blog-card-body h3 a
{
  color: inherit;
  transition: var(--transition);
}

.blog-card-body h3 a:hover
{
  color: var(--blue-bright);
}

.blog-card-body p
{
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-pagination
{
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links
{
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-pagination .page-numbers
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  border: 1.5px solid #d0dce8;
  transition: var(--transition);
  text-decoration: none;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current
{
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}

/* Single article */
.single-article
{
  padding: 60px 0 80px;
}

.single-article-inner
{
  max-width: 800px;
  margin: 0 auto;
}

.single-article-image
{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.single-article-content
{
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.85;
}

.single-article-content h2,
.single-article-content h3
{
  font-family: var(--font-display);
  color: var(--blue-deep);
  margin: 32px 0 14px;
}

.single-article-content h2
{
  font-size: 1.7rem;
}

.single-article-content h3
{
  font-size: 1.35rem;
}

.single-article-content p
{
  margin-bottom: 18px;
}

.single-article-content img
{
  width: 100%;
  border-radius: 10px;
  margin: 24px 0;
}

.single-article-content ul,
.single-article-content ol
{
  padding-left: 24px;
  margin-bottom: 18px;
}

.single-article-content li
{
  margin-bottom: 8px;
}

.single-article-content blockquote
{
  border-left: 4px solid var(--blue-bright);
  padding: 16px 24px;
  background: var(--blue-light);
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--blue-deep);
}

.single-article-footer
{
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e8f0f8;
}

.blog-banner-meta
{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-banner-date
{
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── SERVICES PAGE ── */
.services-hero-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-hero-text h2
{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--blue-deep);
  line-height: 1.35;
  margin: 16px 0 20px;
}

.services-hero-desc p
{
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.services-hero-list
{
  list-style: none;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-hero-list li
{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.services-hero-list li::before
{
  content: '✓';
  color: var(--blue-bright);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.services-img-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 440px;
}

.services-img-grid img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: var(--blue-light);
}

.services-img-grid img:first-child
{
  grid-row: 1 / 3;
  height: 100%;
}

/* Services cards */
.services-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card
{
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.service-card:hover
{
  border-color: var(--blue-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon
{
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.service-icon img
{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h4
{
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p
{
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ── CONTACT SOCIAL ── */
.contact-social
{
  margin-top: 32px;
}

.contact-social-links
{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social-btn
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--blue-light);
  border: 1.5px solid #d0dce8;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-deep);
  transition: var(--transition);
}

.contact-social-btn svg
{
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.contact-social-btn:hover
{
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}

.contact-item-link
{
  font-size: 0.97rem;
  color: var(--blue-bright);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item-link:hover
{
  color: var(--blue-mid);
  text-decoration: underline;
}

/* ── PAGE CONTENT ── */
.page-content
{
  padding: 64px 0 80px;
}

.page-title
{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-deep);
  margin-bottom: 32px;
}

.page-body
{
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 760px;
}

.page-body p
{
  margin-bottom: 16px;
}

/* ── PAGE HERO BANNER ── */
.page-banner
{
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-banner-bg
{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.page-banner-overlay
{
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 50, 0.48);
}

.page-banner .container
{
  position: relative;
  z-index: 2;
}

.page-banner h1
{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(10, 35, 66, 0.3);
}

.page-banner p
{
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(10, 35, 66, 0.25);
}

/* ── FOOTER ── */
.site-footer
{
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 28px;
}

.footer-grid
{
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo
{
  font-size: 1.4rem;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p
{
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h5
{
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul
{
  list-style: none;
}

.footer-col li
{
  margin-bottom: 10px;
}

.footer-col a
{
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col a:hover
{
  color: var(--gold);
}

.footer-bottom
{
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ── PAYMENT PAGE ── */
.payment-page
{
  max-width: 900px;
  margin: 0 auto;
}

.payment-intro
{
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.payment-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.payment-card
{
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(10, 35, 66, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.payment-card:hover
{
  border-color: var(--blue-bright);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 35, 66, 0.16);
}

.payment-card-header
{
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.payment-icon-wrap
{
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.payment-card-header h3
{
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.payment-card-header p
{
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0 0;
}

.payment-card-body
{
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-card-desc
{
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.payment-btn
{
  display: block;
  text-align: center;
  margin-top: auto;
}

.iban-details
{
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #dce8f4;
}

.iban-row
{
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid #dce8f4;
  gap: 12px;
}

.iban-row:last-child
{
  border-bottom: none;
}

.iban-row:nth-child(even)
{
  background: var(--gray-light);
}

.iban-label
{
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-mid);
  min-width: 88px;
  flex-shrink: 0;
}

.iban-value
{
  font-size: 0.93rem;
  color: var(--blue-deep);
  font-weight: 600;
}

.iban-mono
{
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  color: var(--blue-mid);
}

.payment-note
{
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-light);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}

.payment-note-icon
{
  font-size: 1.3rem;
  flex-shrink: 0;
}

.payment-note p
{
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.payment-note a
{
  color: var(--blue-bright);
  font-weight: 600;
  text-decoration: underline;
}

/* ── CONTACT PAGE ── */
.contact-grid
{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-label
{
  display: block;
  margin-bottom: 12px;
}

.contact-info h3
{
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--blue-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}

.contact-info>p
{
  color: var(--gray-text);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-items
{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item
{
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon
{
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item-label
{
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.contact-item span
{
  font-size: 0.97rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-form-card
{
  background: var(--white);
  border: 1.5px solid #d0dce8;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h4
{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 28px;
}

.form-row
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group
{
  margin-bottom: 18px;
}

.form-group label
{
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue-deep);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea
{
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d0dce8;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus
{
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(33, 120, 196, 0.10);
}

.form-group textarea
{
  resize: vertical;
  min-height: 130px;
}

.btn-full
{
  width: 100%;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px)
{
  .packages-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-hero-grid
  {
    gap: 40px;
  }

  .services-img-grid
  {
    height: 360px;
  }
}

@media (max-width: 900px)
{
  .contact-grid
  {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid
  {
    grid-template-columns: 1fr 1fr;
  }

  .payment-grid
  {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 36px;
  }

  .section
  {
    padding: 60px 0;
  }

  .hero
  {
    min-height: 50vh;
  }
}

@media (max-width: 640px)
{

  /* Top bar */
  .top-bar-contact .top-bar-link:last-child
  {
    display: none;
  }

  /* hide email on mobile, keep phone */
  .top-bar-link
  {
    font-size: 0.78rem;
  }

  /* Nav */
  .site-nav
  {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--blue-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.25);
    z-index: 99;
    padding: 12px 16px 20px;
    animation: slideDown 0.22s ease both;
  }

  @keyframes slideDown
  {
    from
    {
      opacity: 0;
      transform: translateY(-8px);
    }

    to
    {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .site-nav.open
  {
    display: block;
  }

  .site-nav.open ul
  {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav.open li
  {
    width: 100%;
  }

  .site-nav.open a
  {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .site-nav.open a::after
  {
    display: none;
  }

  .site-nav.open a:hover
  {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
  }

  .site-nav.open .current-menu-item>a,
  .site-nav.open .current_page_item>a
  {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
  }

  .site-nav.open .nav-cta
  {
    margin-top: 8px;
  }

  .site-nav.open .nav-cta a
  {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .nav-toggle
  {
    display: flex;
  }

  .site-header
  {
    position: relative;
  }

  /* Hero */
  .hero
  {
    min-height: unset;
    padding: 60px 0;
  }

  .hero-buttons
  {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn
  {
    text-align: center;
  }

  .hero-badge
  {
    font-size: 0.72rem;
  }

  /* Sections */
  .section
  {
    padding: 48px 0;
  }

  .section-header
  {
    margin-bottom: 36px;
  }

  .cta-strip
  {
    padding: 48px 0;
  }

  /* Packages grid */
  .packages-grid
  {
    grid-template-columns: 1fr;
  }

  .why-grid
  {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card
  {
    padding: 24px 20px;
  }

  /* Packages pagination */
  .packages-pagination .page-numbers li a,
  .packages-pagination .page-numbers li span
  {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* Package cards - 1 col on mobile */
  .packages-grid
  {
    grid-template-columns: 1fr;
  }

  /* Privacy */
  .privacy-layout
  {
    grid-template-columns: 1fr;
  }

  .privacy-toc
  {
    display: none;
  }

  .privacy-rights-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact social */
  .contact-social-links
  {
    gap: 8px;
  }

  .contact-social-btn
  {
    padding: 8px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .contact-social-btn svg
  {
    width: 14px;
    height: 14px;
  }

  .contact-grid
  {
    gap: 32px;
  }

  /* Steps */
  .step-item
  {
    padding: 36px 16px;
  }

  .step-ghost-number
  {
    font-size: 5rem;
  }

  .step-title
  {
    font-size: 1.1rem;
  }

  /* Services teaser */
  .services-teaser-grid
  {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sticky CTA - icon only on mobile */
  .sticky-cta
  {
    bottom: 20px;
    right: 16px;
    gap: 8px;
  }

  .sticky-cta-btn
  {
    padding: 12px 14px;
  }

  .sticky-cta-text
  {
    display: none;
  }

  .sticky-cta-icon
  {
    font-size: 1.2rem;
  }

  /* Front page blog preview */
  .fp-blog-grid
  {
    grid-template-columns: 1fr !important;
  }

  .fp-blog-card:first-child
  {
    grid-row: auto !important;
  }

  .fp-blog-card:first-child .fp-blog-image
  {
    height: auto !important;
  }

  /* Blog */
  .blog-grid
  {
    grid-template-columns: 1fr;
  }

  .blog-card-image
  {
    height: 200px;
  }

  .single-article
  {
    padding: 36px 0 52px;
  }

  .single-article-image
  {
    height: 220px;
  }

  .single-article-content
  {
    font-size: 0.97rem;
  }

  /* Services */
  .services-hero-grid
  {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-img-grid
  {
    height: 260px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .services-img-grid img:first-child
  {
    grid-row: auto;
  }

  .services-grid
  {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card
  {
    padding: 24px 20px;
  }

  /* Single package */
  /* sp-hero uses aspect-ratio, no override needed */
  .sp-title-bar-inner
  {
    flex-direction: column;
    gap: 16px;
  }

  .sp-title-bar-right
  {
    text-align: left;
  }

  .sp-price-wrap
  {
    justify-content: flex-start;
  }

  .sp-layout
  {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sp-sidebar
  {
    order: -1;
  }

  .sp-sidebar-card
  {
    position: static;
    margin-bottom: 32px;
  }

  .sp-inc-exc-grid
  {
    grid-template-columns: 1fr;
  }

  .sp-gallery
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-section
  {
    padding: 32px 0 52px;
  }

  .single-package
  {
    padding: 32px 0 52px;
  }

  .package-hero-image
  {
    height: 220px;
    border-radius: 10px;
  }

  .package-meta
  {
    gap: 14px;
  }

  .package-price-tag
  {
    font-size: 1.15rem;
    padding: 8px 18px;
  }

  /* Pages */
  .page-content
  {
    padding: 36px 0 52px;
  }

  .page-banner
  {
    padding: 40px 0;
  }

  .page-banner h1
  {
    font-size: 1.7rem;
  }

  /* Payment */
  .payment-page
  {
    max-width: 100%;
  }

  .payment-intro
  {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .payment-card-header
  {
    padding: 22px 20px;
    gap: 14px;
  }

  .payment-icon-wrap
  {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    border-radius: 10px;
  }

  .payment-card-header h3
  {
    font-size: 1.1rem;
  }

  .payment-card-body
  {
    padding: 20px 20px 24px;
    gap: 16px;
  }

  .payment-btn
  {
    padding: 12px 24px;
  }

  .iban-row
  {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 11px 14px;
  }

  .iban-label
  {
    min-width: unset;
  }

  .iban-mono
  {
    font-size: 0.82rem;
    word-break: break-all;
  }

  .payment-note
  {
    padding: 14px 16px;
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
  }

  .payment-note p
  {
    font-size: 0.87rem;
  }

  /* Contact */
  .contact-grid
  {
    gap: 32px;
  }

  .contact-form-card
  {
    padding: 24px 18px;
  }

  .form-row
  {
    grid-template-columns: 1fr;
  }

  .contact-info h3
  {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer-grid
  {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom
  {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .site-footer
  {
    padding: 44px 0 24px;
  }
}