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

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a1f1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ==================== TYPOGRAPHY ==================== */
.font-display {
  font-family: "Playfair Display", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* ==================== COLORS ==================== */
:root {
  --primary-dark: #0a1f1a;
  --primary-green: #0d2820;
  --primary-gold: #d4af37;
  --gold-light: #f8e08e;
  --text-gray: #9ca3af;
  --border-gold: rgba(212, 175, 55, 0.2);
}

/* ==================== UTILITIES ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f8e08e 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bg {
  background:
    radial-gradient(
      ellipse at top right,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(34, 139, 34, 0.1) 0%,
      transparent 50%
    ),
    #0a1f1a;
}

.gold-border {
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: border-color 0.3s ease;
}

.gold-border:hover {
  border-color: rgba(212, 175, 55, 0.8);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 31, 26, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

/* Mobile: Thinner navbar */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }

  .navbar .nav-logo .logo-icon {
    width: 50px;
    height: 50px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Logo icon in navbar - larger and no background */
.navbar .nav-logo .logo-icon {
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
}

/* Logo image */
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon span {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Hide logo text in navigation (keep only in footer) */
.navbar .nav-logo .logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-gold);
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--primary-gold);
  font-size: 1.5rem;
}

/* Mobile menu wrapper - hidden on desktop */
.mobile-menu-wrapper {
  display: none;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: var(--primary-gold);
  border-radius: 0;
  filter: blur(100px);
  opacity: 0.05;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: #228b22;
  border-radius: 0;
  filter: blur(100px);
  opacity: 0.05;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: fit-content;
  font-size: 0.875rem;
  color: var(--primary-gold);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.75;
}

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

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-images > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-images > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}

.hero-image {
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

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

.hero-image-1 {
  height: 16rem;
}
.hero-image-2 {
  height: 12rem;
}
.hero-image-3 {
  height: 12rem;
}
.hero-image-4 {
  height: 16rem;
}

/* Video background container */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 26, 0.85);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.bg-gradient {
  background: linear-gradient(
    to bottom,
    var(--primary-dark),
    var(--primary-green)
  );
}

/* ==================== SERVICES GRID (SZOLGÁLTATÁSOK OLDAL) ==================== */
/* FONTOS: Ez a services-grid CSAK a szolgáltatások oldalon használt! */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: center !important;
  margin: 0 auto !important;
}

/* Mobile responsive fix for services grid */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 641px) and (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

.service-card {
  background: rgba(10, 31, 26, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-card > * {
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 7.5rem;
  font-weight: 900;
  opacity: 0.08;
  line-height: 1;
  font-family: "Playfair Display", serif;
}

.service-card .icon {
  font-size: 3rem;
  margin: 0 auto 1rem auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin: 0 auto 1rem auto !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.75;
  margin: 0 auto 1.5rem auto !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

.service-card .details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-card .details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.service-card .details li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-gold);
  border-radius: 0;
  flex-shrink: 0;
}

/* ==================== STATS ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(13, 40, 32, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
}

.stat-card .icon {
  color: var(--primary-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-card .number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card .label {
  color: var(--text-gray);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: rgba(13, 40, 32, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 3rem;
  text-align: center;
}

.testimonial-content {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-content.active {
  display: flex;
  opacity: 1;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 0;
  border: 4px solid var(--primary-gold);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary-gold);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-gold);
  width: 32px;
  border-radius: 0;
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.75rem;
  border-radius: 0;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-gold);
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-gold);
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.map-container {
  border-radius: 0;
  overflow: hidden;
  height: 16rem;
  border: 2px solid var(--border-gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper {
  background: var(--primary-green);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 2rem;
}

.contact-form-wrapper h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--primary-gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--primary-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  padding: 0.75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.form-group textarea {
  resize: none;
  min-height: 150px;
}

.form-alert {
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-alert.show {
  display: flex;
}

.form-alert.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #050f0c;
  border-top: 1px solid var(--border-gold);
  padding: 3rem 0;
}

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

.footer-section h4 {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul a {
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.75rem;
  border-radius: 0;
  display: inline-flex;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* ==================== PROCESS SECTION ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-gray);
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  /* Mobile typography adjustments */
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .section-header h2 {
    font-size: clamp(1.875rem, 8vw, 2.5rem) !important;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Hide desktop menu on mobile */
  .nav-menu {
    display: none !important;
  }

  /* Show mobile menu wrapper */
  .mobile-menu-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-wrapper.active {
    pointer-events: all;
    opacity: 1;
  }

  /* Overlay */
  .mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-wrapper.active .mobile-menu-overlay {
    opacity: 1;
  }

  /* Menu panel */
  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(10, 31, 26, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .mobile-menu-wrapper.active .mobile-menu-panel {
    transform: translateX(0);
  }

  /* Menu list */
  .mobile-menu-list {
    list-style: none;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list li {
    width: 100%;
  }

  .mobile-menu-list a {
    display: block;
    font-size: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    color: var(--text-light);
  }

  .mobile-menu-list a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
  }

  /* Close button */
  .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--primary-gold);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1000;
    transition: opacity 0.2s ease;
  }

  /* Hide hamburger when menu is open on mobile */
  body.menu-open .mobile-menu-btn {
    opacity: 0;
    pointer-events: none;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-images > div:last-child {
    padding-top: 0;
  }

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

  /* Container padding adjustment on very small screens */
  .container {
    padding: 0 1rem;
  }

  /* Section padding reduction on mobile */
  .section {
    padding: 4rem 0;
  }
}

/* ==================== LOADING SPINNER ==================== */
.spinner {
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top-color: var(--primary-gold);
  border-radius: 0;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== TIMELINE PROCESS ==================== */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:last-child .timeline-arrow {
  display: none;
}

.timeline-content {
  display: flex;
  gap: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(8px);
}

.timeline-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.timeline-icon svg {
  color: var(--primary-dark);
}

.timeline-text {
  flex: 1;
}

.timeline-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  margin-bottom: 0.75rem;
}

.timeline-text h3 {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.timeline-text p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline-highlight {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  border-left: 3px solid var(--primary-gold);
}

.timeline-arrow {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  opacity: 0.3;
}

.timeline-arrow svg {
  color: var(--primary-gold);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .timeline-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .timeline-icon {
    width: 56px;
    height: 56px;
  }

  .timeline-text h3 {
    font-size: 1.25rem;
  }

  .timeline-content:hover {
    transform: translateX(0);
  }
}

/* ==================== PREMIUM HIGHLIGHT CARD ==================== */
.premium-highlight {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(218, 165, 32, 0.3) 25%,
    rgba(255, 215, 0, 0.25) 50%,
    rgba(218, 165, 32, 0.3) 75%,
    rgba(212, 175, 55, 0.2) 100%
  );
  background-size: 400% 400%;
  animation: shinyGold 6s ease infinite;
  border: 2px solid var(--primary-gold);
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.4),
    inset 0 0 30px rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

.premium-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 3s linear infinite;
  pointer-events: none;
}

.premium-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.premium-badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes shinyGold {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.premium-highlight:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 10px 40px rgba(212, 175, 55, 0.6),
    inset 0 0 40px rgba(212, 175, 55, 0.15);
}

.premium-highlight .icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.premium-highlight h3 {
  color: #f4d03f;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
  font-size: 1.75rem;
}

.premium-highlight .details li::before {
  background: var(--primary-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .premium-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .premium-highlight:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

/* ==================== MISSION GRID LAYOUT ==================== */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(10, 31, 26, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.mission-image-placeholder svg {
  color: var(--primary-gold);
  opacity: 0.5;
}

.mission-content {
  padding: 2rem 0;
}

.mission-content h2 {
  color: var(--text-light);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-image {
    min-height: 400px;
    order: -1;
  }

  .mission-content {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .mission-image {
    min-height: 300px;
    order: 1;
  }

  .mission-grid {
    gap: 2rem;
  }
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-grid {
  max-width: 1000px;
  margin: 0 auto;
}

/* Stats Row - Compact Horizontal */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.why-stat {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.why-stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: grayscale(0.3);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Values Grid - Compact List */
.why-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.03);
  border-left: 3px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.why-value:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(5px);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.value-content h4 {
  font-size: 1rem;
  color: var(--primary-gold);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.value-content p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .why-values {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .why-value {
    padding: 1rem;
  }

  .value-content h4 {
    font-size: 0.9rem;
  }

  .value-content p {
    font-size: 0.8rem;
  }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.5rem) !important;
    line-height: 1.15;
  }

  .hero p {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .testimonial-name {
    font-size: 1.25rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ==================== NEW FEATURE SECTION (MIT KÍNÁLUNK - FŐOLDAL) ==================== */
/* FONTOS: Ezek az osztályok CSAK a főoldali "Mit kínálunk?" szekcióhoz tartoznak! */
/* NEM zavarja a szolgáltatások oldal service-card osztályait! */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.feature-row:last-of-type {
  margin-bottom: 0;
}

/* NO reverse on desktop - HTML order determines layout */
.feature-row-reverse {
  /* direction: rtl removed - HTML order is already correct */
}

/* Feature Image */
.feature-image {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

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

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

/* Placeholder for images */
.feature-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(10, 31, 26, 0.9) 100%
  );
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.feature-row:hover .feature-image-placeholder {
  border-color: var(--primary-gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Feature icon in placeholder */
.feature-icon {
  font-size: 8rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  transition: all 0.5s ease;
}

.feature-row:hover .feature-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

/* Feature Content */
.feature-content {
  padding: 2rem;
  position: relative;
}

.feature-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.feature-row:hover .feature-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.feature-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.feature-description {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.feature-link:hover {
  gap: 1rem;
  border-bottom-color: var(--primary-gold);
}

.feature-link svg {
  transition: transform 0.3s ease;
}

.feature-link:hover svg {
  transform: translateX(5px);
}

/* Decorative elements */
.feature-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Mobile Responsive - KRITIKUS RÉSZ! */
@media (max-width: 968px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
  }

  /* NO reverse on mobile either */
  .feature-row-reverse {
    /* No special styling needed */
  }

  /* FONTOS: Mobilon MINDIG szöveg fent, kép lent! */
  .feature-content {
    order: 1; /* Szöveg mindig első */
  }

  .feature-image {
    order: 2; /* Kép mindig második */
    height: 350px;
  }

  .feature-content {
    padding: 1rem;
    text-align: center;
  }

  .feature-badge {
    margin: 0 auto 1.5rem;
  }

  .feature-link {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .feature-row {
    margin-bottom: 3rem;
  }

  .feature-image {
    height: 280px;
  }

  .feature-icon {
    font-size: 5rem;
  }

  .feature-title {
    font-size: 1.75rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .feature-badge {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Animation on scroll */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Desktop animációk */
@media (min-width: 969px) {
  .feature-row .feature-image {
    animation: slideInLeft 0.8s ease-out;
  }

  .feature-row .feature-content {
    animation: slideInRight 0.8s ease-out;
  }

  .feature-row-reverse .feature-image {
    animation: slideInRight 0.8s ease-out;
  }

  .feature-row-reverse .feature-content {
    animation: slideInLeft 0.8s ease-out;
  }
}

/* ==================== EXTRA SMALL MOBILE (≤480px) ==================== */
@media (max-width: 480px) {
  /* Hero section - prevent overflow */
  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.5rem) !important;
    line-height: 1.15;
  }

  .hero p {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Feature section */
  .feature-title {
    font-size: 1.5rem !important;
  }

  .feature-description {
    font-size: 0.9rem !important;
  }

  /* Testimonials */
  .testimonial-name {
    font-size: 1.25rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  /* Container */
  .container {
    padding: 0 0.875rem;
  }
}
#testimonials-section-full {
  background-image: url(../images/alberto7_oltonyok-elegans_ruhak.jpg);
  background-size: cover;
}

/*ADATVÉDELMI CHECKBOX*/
.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-gold);
}

.checkbox-label span {
  flex: 1;
}
