/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --blue-deep: #1a3a5c;
  --blue-greek: #0d5eaf;
  --blue-mid: #2e7bcf;
  --blue-light: #e8f0fe;
  --blue-pale: #f4f8ff;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --gold-accent: #d4a843;
  --gold-light: #f5e6c4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--blue-deep);
  line-height: 1.2;
}

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

a {
  color: var(--blue-greek);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-mid);
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--blue-greek), var(--gold-accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-greek), var(--blue-deep));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: all var(--transition);
  padding: 0;
  line-height: 1;
}

.lang-btn:hover {
  border-color: var(--blue-light);
  background: var(--blue-pale);
  transform: scale(1.1);
}

.lang-btn.active {
  border-color: var(--blue-greek);
  background: var(--blue-light);
  transform: scale(1.1);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(26, 58, 92, 0.75) 0%,
      rgba(13, 94, 175, 0.55) 50%,
      rgba(26, 58, 92, 0.80) 100%);
}

.hero-content {
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-greek), var(--blue-mid));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(13, 94, 175, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(13, 94, 175, 0.5);
  color: var(--white);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ── Features ── */
.features {
  padding: 100px 0;
  background: var(--blue-pale);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(13, 94, 175, 0.06);
}

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

.feature-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-img {
  transform: scale(1.05);
}

.feature-card-img-wrap {
  overflow: hidden;
}

.feature-card-body {
  padding: 24px;
}

.feature-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-deep);
}

.feature-card-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Map Section ── */
.map-section {
  padding: 100px 0;
  background: var(--white);
}

.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

#map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.65);
  transition: filter var(--transition);
}

#map-placeholder:hover .map-placeholder-bg {
  filter: blur(2px) brightness(0.55);
}

.map-placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}

.map-placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.map-placeholder-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

#show-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-greek), var(--blue-mid));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(13, 94, 175, 0.3);
}

#show-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13, 94, 175, 0.4);
}

#map-container {
  display: none;
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#map-container iframe {
  width: 100%;
  height: 100%;
}

.directions-btn-wrap {
  text-align: center;
  margin-top: 24px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-greek);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue-greek);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-directions:hover {
  background: var(--blue-greek);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 94, 175, 0.3);
}

.btn-directions svg {
  width: 18px;
  height: 18px;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--blue-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 94, 175, 0.06);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.contact-icon.phone {
  background: linear-gradient(135deg, rgba(13, 94, 175, 0.1), rgba(46, 123, 207, 0.1));
  color: var(--blue-greek);
}

.contact-icon.address {
  background: linear-gradient(135deg, rgba(13, 94, 175, 0.1), rgba(46, 123, 207, 0.1));
  color: var(--blue-greek);
}

.contact-icon.hours {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.08));
  color: var(--gold-accent);
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-card a:hover {
  color: var(--blue-greek);
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-accent), #c49930);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ── Footer ── */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer p {
  font-size: 0.85rem;
}

.footer-privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .hero-content {
    padding: 100px 20px 60px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .features,
  .map-section,
  .contact {
    padding: 70px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .lang-switcher {
    justify-content: center;
    gap: 2px;
  }

  .lang-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  #map-container {
    height: 320px;
  }

  .feature-card-img {
    height: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}