:root {
  --bg: #071521;
  --bg-soft: #0c2231;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4fbff;
  --muted: #c1d5df;
  --accent: #47d7d0;
  --accent-strong: #0ea5c6;
  --sand: #f6fbff;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  user-select: none;
  background:
    radial-gradient(circle at top, rgba(57, 190, 208, 0.22), transparent 30%),
    linear-gradient(180deg, #04101a 0%, #092131 45%, #04111c 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea,
select {
  user-select: text;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-accent {
  background: linear-gradient(180deg, rgba(70, 215, 208, 0.08), rgba(255, 255, 255, 0.02));
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 1rem;
}

.compact-header {
  position: sticky;
  background: rgba(4, 16, 26, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 21, 33, 0.5);
  backdrop-filter: blur(16px);
  border-radius: 999px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.translate-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.translate-widget label {
  color: var(--muted);
  font-size: 0.82rem;
}

.translate-widget select,
.contact-form select {
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 21, 33, 0.92);
  color: var(--text);
  color-scheme: dark;
}

.translate-widget select option,
.contact-form select option {
  color: #f4fbff;
  background: #0b1f2d;
}

.google-translate-anchor {
  position: absolute;
  left: -9999px;
}

.compact-header .nav-wrap {
  border-radius: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(126, 232, 255, 0.42);
  box-shadow: 0 0 14px rgba(84, 216, 255, 0.18);
  pointer-events: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong,
.hero h1,
.page-hero h1,
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

.brand-text strong {
  font-size: 1.3rem;
}

.brand-text small {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.2rem auto;
  background: white;
  transition: transform var(--transition), opacity var(--transition);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
}

.hero-home {
  min-height: 100vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(5, 15, 25, 0.22), rgba(5, 15, 25, 0.8)),
    url("saranda.png") center/cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(71, 215, 208, 0.26), transparent 20%),
    radial-gradient(circle at 75% 30%, rgba(14, 165, 198, 0.22), transparent 30%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 10rem 0 8rem;
}

.eyebrow,
.section-tag,
.tour-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9f9f9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  max-width: 14ch;
  width: max-content;
  font-size: clamp(3.8rem, 8vw, 6.7rem);
  line-height: 0.92;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.hero-lead,
.page-hero p,
.section-heading p,
.contact-card p,
.tour-detail-content p,
.about-panel p,
.info-card p,
.testimonial-card p,
.cta-card p,
.timeline-card p,
.feature-card p,
.intro-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-lead {
  max-width: 42rem;
  font-size: 1.08rem;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.cta-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dff8fa;
  font-size: 0.88rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.hero-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(140, 238, 234, 0.34);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #d5edf3;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #8ceeea;
}

.breadcrumbs span {
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #042130;
  box-shadow: 0 14px 30px rgba(14, 165, 198, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.text-link {
  color: #8ceeea;
  font-weight: 700;
}

.glass-card,
.tour-detail-card,
.about-panel,
.info-card,
.contact-card,
.timeline-card,
.cta-card,
.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 56rem;
}

.stat-card,
.feature-card,
.testimonial-card,
.info-card,
.about-panel,
.timeline-card,
.cta-card,
.contact-card,
.tour-detail-card {
  padding: 1.6rem;
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.45rem;
}

.stat-card span {
  color: var(--muted);
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.wave-divider path {
  fill: #071521;
}

.split-layout,
.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.feature-stack,
.contact-side {
  display: grid;
  gap: 1rem;
}

.feature-card,
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(71, 215, 208, 0.25), rgba(255, 255, 255, 0.08));
  color: #bffcf3;
  font-weight: 800;
}

.icon-badge svg {
  width: 1.3rem;
  height: 1.3rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.7rem;
}

.tour-grid,
.testimonial-grid,
.metrics-grid,
.info-grid {
  display: grid;
  gap: 1.4rem;
}

.tour-grid,
.testimonial-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-card {
  min-height: 29rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
  box-shadow: var(--shadow);
}

.tour-card:hover,
.gallery-item:hover {
  transform: translateY(-6px);
}

.tour-card::before,
.tour-detail-media::before,
.gallery-item::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(3, 11, 18, 0.76));
}

.tour-card-inner {
  position: absolute;
  inset: auto 1.35rem 1.35rem;
  z-index: 1;
  padding: 1.3rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 21, 33, 0.36), rgba(7, 21, 33, 0.66));
  backdrop-filter: blur(12px);
}

.tour-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #8ceeea;
  letter-spacing: 0.25em;
}

.card-image-krorez {
  background: url("krorez.jpg") center/cover;
}

.card-image-coast {
  background: url("tongo.jpg") center/cover;
}

.card-image-night {
  background: url("saranda.png") center/cover;
}

.experience-strip {
  padding-top: 0;
}

.metrics-grid article {
  padding: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.metrics-grid span {
  color: #8ceeea;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.metrics-grid strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.2rem;
}

.weather-section {
  padding-top: 1.5rem;
}

.weather-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius);
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.weather-pill {
  padding: 1.2rem;
  border-radius: 20px;
}

.weather-pill span {
  display: block;
  color: #8ceeea;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-pill strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
}

.faq-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero {
  min-height: 25rem;
  display: grid;
  align-items: end;
  padding: 7rem 0 3rem;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.page-hero-tours {
  background-image: url("saranda.png");
}

.page-hero-about {
  background-image: url("tongo.jpg");
}

.page-hero-gallery {
  background-image: url("krorez.jpg");
}

.page-hero-contact {
  background-image: url("saranda.png");
}

.tour-detail-grid {
  display: grid;
  gap: 1.8rem;
}

.tour-detail-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  overflow: hidden;
}

.tour-detail-media {
  min-height: 20rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.tour-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  margin: 1.2rem 0 1.6rem;
  color: #dff7fb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 15rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow);
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-weight: 700;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 8, 15, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: min(100%, 980px);
  max-height: 82vh;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: #eafcff;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  color: #9cf4de;
}

.form-feedback.is-error {
  color: #ffb4b4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(71, 215, 208, 0.7);
  box-shadow: 0 0 0 4px rgba(71, 215, 208, 0.12);
}

.map-placeholder {
  min-height: 17rem;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.4rem;
  color: #dcf5f7;
  background:
    linear-gradient(135deg, rgba(71, 215, 208, 0.16), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 10px, rgba(255, 255, 255, 0.01) 10px 20px);
}

.map-frame {
  width: 100%;
  min-height: 17rem;
  border: 0;
  border-radius: 22px;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.social-link.instagram {
  color: #c86bff;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.18), rgba(193, 53, 132, 0.14));
  border-color: rgba(200, 107, 255, 0.28);
}

.social-link.whatsapp {
  color: #3ee47f;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(17, 92, 49, 0.1));
  border-color: rgba(62, 228, 127, 0.22);
}

.social-link.phone {
  color: #66d9ff;
  background: linear-gradient(135deg, rgba(62, 184, 255, 0.18), rgba(8, 84, 135, 0.1));
  border-color: rgba(102, 217, 255, 0.22);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > *,
.page-hero-content > *,
.tour-card,
.feature-card,
.testimonial-card,
.about-panel,
.info-card,
.contact-card {
  animation: fadeUp 800ms ease both;
}

.hero-content > *:nth-child(2),
.page-hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3),
.page-hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

@media (max-width: 980px) {
  .hero-stats,
  .tour-grid,
  .testimonial-grid,
  .info-grid,
  .metrics-grid,
  .footer-grid,
  .weather-grid,
  .faq-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .about-grid,
  .contact-layout,
  .weather-card,
  .tour-detail-card {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .page-hero,
  .hero-content {
    padding-top: 8rem;
  }
}

@media (max-width: 760px) {
  .translate-widget {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    position: relative;
    border-radius: 24px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(5, 18, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    width: auto;
    font-size: clamp(2.7rem, 11vw, 3.8rem);
    line-height: 0.96;
  }

  .hero-lead {
    max-width: 30rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-stats,
  .tour-grid,
  .testimonial-grid,
  .info-grid,
  .metrics-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}
