/* ==============================================
	1. GYÖKÉR VÁLTOZÓK ÉS ALAPBEÁLLÍTÁSOK
	============================================ */
:root {
	--bg-main: #ffffff;
	--bg-sub: #f8fafc;
	--bg-card: #ffffff;
	--text-main: #0f172a;
	--text-muted: #475569;
	--primary: #2563eb;
	--primary-light: orange;
	--gradient-tech: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
	--fishing-bg: #f0fdf4;
	--fishing-green: #166534;
	--border-color: #e2e8f0;
	--shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
	--shadow-hover: 0 20px 40px -15px rgba(37, 99, 235, 0.15);
}

* {margin: 0; padding: 0; box-sizing: border-box;}

html {scroll-behavior: smooth; font-family: 'Plus Jakarta Sans', sans-serif;}

/* ==============================================
	GLOBÁLIS HÁTTÉR ÉS TÉMA
	============================================ */
body {margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', sans-serif; color: #f8fafc; background-color: #0b1120; /* Mély, elegáns éjszakai kék alap */
	background-image:
		radial-gradient(at 10% 10%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
		radial-gradient(at 90% 90%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
		radial-gradient(at 50% 50%, rgba(147, 51, 234, 0.08) 0px, transparent 50%);
	background-attachment: fixed; position: relative; overflow-x: hidden;}

/* Finom rácsmintázat az egész oldal mögött */
body::before {content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 40px 40px; pointer-events: none; z-index: -1;}

/* segédosztályok */
.container {width: 90%; max-width: 1200px; margin: 0 auto;}

.text-center {text-align: center;}
.bg-light-alt {background-color: var(--bg-sub);}
.text-gradient {background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

/* ==============================================
	2. GOMBOK ÉS INTERAKTÍV ELEMEK
	============================================ */
.btn-primary, .btn-secondary, .btn-cta, .btn-gradient {display: inline-block; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease;
	border: none; cursor: pointer;}

.btn-gradient {background: var(--gradient-tech); color: #fff; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);}
.btn-gradient:hover {transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);}

.btn-primary {background: var(--text-main); color: #fff;}
.btn-primary:hover {background: var(--primary); transform: translateY(-2px);}

.btn-secondary {background: transparent; color: var(--text-main); border: 1px solid var(--border-color);}
.btn-secondary:hover {background: var(--bg-sub);}

.btn-cta {background: rgba(37, 99, 235, 0.05); color: var(--primary) !important; border: 1px solid rgba(37, 99, 235, 0.2); padding: 8px 18px;}
.btn-cta:hover {background: var(--gradient-tech); color: #fff !important;}

/* ==============================================
	3. FEJLÉC (HEADER & TOP-BAR)
	============================================ */
.header-top {background: #0f172a; color: #cbd5e1; font-size: 0.8rem; padding: 8px 0; border-bottom: 1px solid #1e293b; position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;}

.header-top .container {display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;}

.top-info-group {display: flex; gap: 20px; flex-wrap: wrap;}
.top-info-item {display: flex; align-items: center; gap: 6px;}
.top-info-item i {color: var(--primary-light);}
.top-info-item strong {color: #fff;}

.main-header {position: fixed; top: 33px; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); z-index: 1000; border-bottom: 1px solid var(--border-color);
	padding: 20px 0; transition: all 0.3s ease;}

.header-flex {display: flex; justify-content: space-between; align-items: center;}

.logo a {color: var(--text-main); text-decoration: none; font-weight: 700; font-size: 1.5rem; letter-spacing: -0.5px;}

.nav-menu a {color: var(--text-muted); text-decoration: none; margin-left: 25px; font-size: 0.95rem; font-weight: 500; transition: color 0.3s;}
.nav-menu a:hover, .nav-menu a.active {color: var(--primary);}

.nav-menu .nav-fishing:hover {color: #10b981;}

/* ==============================================
	4. HERO SZEKCIÓ
	============================================ */
.hero {position: relative; padding: 140px 0 90px 0; text-align: center; overflow: hidden;}

/* Lebegő, színgazdag háttérfények a Hero mögött */
.hero::before {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 350px; filter: blur(90px); z-index: 0; pointer-events: none;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(6, 182, 212, 0.25) 40%, transparent 70%); animation: heroPulse 8s infinite alternate ease-in-out;}

@keyframes heroPulse {
	0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
	100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.hero-content {position: relative; z-index: 2; background: rgba(15, 23, 42, 0.45); /* Sokkal világosabb, áttetszőbb üveg-hatás */ backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 28px; padding: 60px 40px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);}

/* Pulzáló Neon Jelvény */
.hero-badge {display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 99, 235, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); padding: 8px 18px; border-radius: 30px;
	font-size: 0.85rem; font-weight: 700; margin-bottom: 25px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);}

.hero-badge i {color: #f97316; /* Élénk narancs ikon */ animation: spinIcon 6s linear infinite;}

@keyframes spinIcon {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

/* Animált Színátmenetes Főcím */
.hero h1 {font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #818cf8 100%); background-size: 200% auto;
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textGradient 5s ease infinite alternate;}

@keyframes textGradient {
	0% {background-position: 0% 50%;}
	100% {background-position: 100% 50%;}
}

.hero p {font-size: 1.15rem; color: #cbd5e1; margin-bottom: 35px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.6;}

/* Akció gombok elrendezése */
.hero-actions {display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}

/* 1. ELSŐDLEGES GOMB: Négyzetes Neon Kék-Ciklámen Átmenet */
.btn-hero-primary {position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%); color: #ffffff !important; font-weight: 700;
	font-size: 1rem; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; z-index: 1;}
.btn-hero-primary::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); opacity: 0; transition: opacity 0.35s ease; z-index: -1;}
.btn-hero-primary:hover {transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 35px rgba(6, 182, 212, 0.6);}
.btn-hero-primary:hover::before {opacity: 1;}
.btn-hero-primary i {transition: transform 0.3s ease;}
.btn-hero-primary:hover i {transform: translateX(5px);}

/* 2. MÁSODLAGOS GOMB: Pulzáló Narancs-Neon Üveggomb */
.btn-hero-secondary {position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: rgba(249, 115, 22, 0.12); color: #fb923c !important; border: 1.5px solid rgba(249, 115, 22, 0.5);
	font-weight: 700; font-size: 1rem; border-radius: 12px; text-decoration: none; backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);}
.btn-hero-secondary:hover {background: #f97316; color: #ffffff !important; border-color: #f97316; transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);}

/* Mobil igazítás */
@media (max-width: 768px) {
	.hero h1 {font-size: 2.2rem;}
	.hero-content {padding: 40px 20px;}
	.hero-actions {flex-direction: column;}
	.btn-hero-primary, .btn-hero-secondary {width: 100%; justify-content: center;}
}

/* ==============================================
	5. FALIÚJSÁG SZEKCIÓ (TISZTÁN CSS PARAFA TÁBLA)
	============================================ */
.faliujsag-section {padding: 20px 0 60px 0; background-color: #334155;}

.corkboard-wood-frame {/* Alap parafa szín és rétegezett CSS gradiensek a textúrához */ background-color: #d2a679;
	background-image:
		/* Finom világosabb és sötétebb pontok a parafa szemcséihez */
		radial-gradient(#8c5833 15%, transparent 16%),
		radial-gradient(#e0b386 15%, transparent 16%),
		/* Háttér zajt és egyenetlenséget szimuláló rétegek */
		repeating-radial-gradient(circle at 50% 50%, rgba(163, 117, 81, 0.4) 0, rgba(163, 117, 81, 0.4) 2px, transparent 2px, transparent 5px),
		repeating-radial-gradient(circle at 20% 80%, rgba(100, 60, 30, 0.3) 0, rgba(100, 60, 30, 0.3) 1px, transparent 1px, transparent 4px);
	background-size: 8px 8px, 10px 10px, 30px 30px, 20px 20px; background-position: 0 0, 4px 4px, 0 0, 0 0;

	/* 3D-s fa keret szimulálása dupla box-shadow és border segítségével */
	border: 16px solid #4a2f1b; border-radius: 12px; box-shadow:
		inset 0 0 50px rgba(0, 0, 0, 0.6), /* Belső árnyék a keret alatt */
		inset 0 0 15px rgba(0, 0, 0, 0.4),
		0 15px 35px rgba(0, 0, 0, 0.4); /* Külső árnyék */

	padding: 45px 20px; margin-top: -35px; position: relative; z-index: 5;
}

.faliujsag-container {display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; padding: 20px 0;}

.sticky-note {background: #fff7a3; /* Klasszikus sárga cetli */ color: #2c3e50; width: 290px; min-height: 260px; padding: 25px; position: relative; box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 0 30px / 45px; display: flex; flex-direction: column; justify-content: space-between;

	/* Élethű, hanyag elforgatás */
	transform: rotate(-1.5deg); transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Váltakozó forgatások a realizmusért */
.faliujsag-container .sticky-note:nth-child(even) {transform: rotate(2deg);}
.faliujsag-container .sticky-note:nth-child(3n) {transform: rotate(-1deg);}

.sticky-note:hover {transform: scale(1.04) rotate(0deg) !important; box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.18); z-index: 5;}

/* 3D-s Rajzszög a cetlik tetején */
.sticky-note::before {content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; background: radial-gradient(circle at 4px 4px, #ff4d4d, #b30000 70%, #660000);
	border-radius: 50%; box-shadow: 2px 12px 5px rgba(0,0,0,0.4), inset -2px -2px 4px rgba(0,0,0,0.6); z-index: 5;}

/* Különböző kategóriájú cetli hátterek */
.sticky-note.global-note {background: #bfeaff;} /* Világoskék közérdekű */

.uzenet-text {font-size: 1rem; line-height: 1.6; font-weight: 500; color: #34495e; word-wrap: break-word; margin-bottom: 15px;}

.note-footer {border-top: 1px solid rgba(0, 0, 0, 0.06); padding-top: 12px; margin-top: auto;}

.note-footer .datum {font-size: 0.8rem; color: #666; line-height: 1.4;}

.note-footer .datum i {margin-right: 4px;}

/* Alternatív hírkártya elrendezés (ha rácsos listát használ az index) */
.news-section {background-color: var(--bg-main);}
.grid-news {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px;}
.news-card {background: var(--bg-sub); padding: 30px; border-radius: 16px; border-left: 5px solid #64748b; box-shadow: var(--shadow-soft); transition: transform 0.3s ease;}
.news-card:hover {transform: translateY(-3px);}

.border-info {border-left-color: #3b82f6;}
.border-horgasz {border-left-color: #10b981;}
.border-szerviz {border-left-color: #f59e0b;}
.border-technika {border-left-color: #8b5cf6;}

.news-header {display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;}
.news-badge-tag {font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase;}
.tag-info {background: rgba(59, 130, 246, 0.1); color: #3b82f6;}
.tag-horgasz {background: rgba(16, 185, 129, 0.1); color: #10b981;}
.tag-szerviz {background: rgba(245, 158, 11, 0.1); color: #f59e0b;}
.tag-technika {background: rgba(139, 92, 246, 0.1); color: #8b5cf6;}
.news-date {font-size: 0.8rem; color: var(--text-muted);}
.no-news {text-align: center; color: var(--text-muted); grid-column: 1/-1; padding: 20px;}

/* ==============================================
	6. SZOLGÁLTATÁSOK SZEKCIÓ (SERVICES)
	============================================ */
.services-section {padding: 80px 0; position: relative;}

.service-card {background: rgb(32 61 107); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 35px; transition: all 0.35s ease;}
.service-card:hover {transform: translateY(-8px); border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2); background: rgba(30, 41, 59, 0.75);}

.service-card h3 {color: #ffffff;}

.service-card p {color: #94a3b8;}

.grid-services {display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;}

/* ==============================================
	7. HORGÁSZAT SZEKCIÓ (FISHING)
	============================================ */
.fishing-section {background-color: var(--fishing-bg); border-top: 1px solid #dcfce7; border-bottom: 1px solid #dcfce7;}

.fishing-grid {display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;}

.badge-green {background: #bbf7d0; color: var(--fishing-green); padding: 6px 14px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;}

.fishing-text h2 {font-size: 2rem; margin: 20px 0; font-weight: 700;}
.fishing-list {list-style: none; margin-top: 20px;}
.fishing-list li {margin-bottom: 12px; font-weight: 500; color: #1e3a1e; position: relative; padding-left: 20px;}
.fishing-list li::before {content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700;}

/* ==============================================
	8. REFERENCIÁK (FŐOLDAL ÉS ALOLDAL)
	============================================ */
.grid-references {display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; text-align: left;}

.ref-card {background: var(--bg-sub); padding: 40px; border-radius: 16px; border-top: 4px solid var(--primary); box-shadow: var(--shadow-soft);}

.ref-tag {font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: var(--primary); letter-spacing: 1px;}

.ref-card h4 {font-size: 1.4rem; margin: 10px 0; font-weight: 700;}
.more-refs-box {margin-top: 40px;}

/* Referencia aloldal specifikus elemei */
.page-padding {padding: 160px 0 100px 0;}
.page-header h1 {font-size: 3rem; font-weight: 800; margin-bottom: 15px;}
.page-header p {color: var(--text-muted); max-width: 600px; margin: 0 auto 50px auto;}

.filter-container {display: flex; justify-content: center; gap: 15px; margin-bottom: 50px;}

.filter-btn {padding: 10px 20px; border-radius: 30px; border: 1px solid var(--border-color); background: #fff; cursor: pointer; font-weight: 600; transition: all 0.3s ease;}
.filter-btn.active, .filter-btn:hover {background: var(--text-main); color: #fff; border-color: var(--text-main);}

.grid-references-page {display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px;}

.ref-page-card {background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border-color); transition: all 0.3s ease;}

.ref-page-card.hidden {display: none;}
.ref-page-card:hover {transform: translateY(-5px); box-shadow: var(--shadow-hover);}

.ref-image-placeholder {height: 200px; background: var(--bg-sub); display: flex; align-items: center; justify-content: center; font-size: 3rem;}

.ref-card-content {padding: 30px;}
.ref-page-tag {font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase;}
.ref-card-content h3 {margin: 10px 0; font-size: 1.3rem;}

/* ==============================================
	9. KAPCSOLAT SZEKCIÓ
	============================================ */
.contact-section {padding: 100px 0; position: relative; overflow: hidden; background-color: #0b1120; background-image:
		radial-gradient(at 0% 100%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
		radial-gradient(at 100% 0%, rgba(249, 115, 22, 0.12) 0px, transparent 50%);
}

/* Elmosódott lebegő háttérfények */
.contact-bg-blob {position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none;}
.blob-contact-1 {top: 20%; left: -10%; width: 400px; height: 400px; background: #2563eb;}
.blob-contact-2 {bottom: 10%; right: -10%; width: 420px; height: 420px; background: #f97316;}

/* Header stílus */
.contact-header {max-width: 650px; margin: 0 auto 50px auto;}
.contact-badge {display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); border-radius: 20px; 
	font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase;}

.contact-subtitle {color: #94a3b8; font-size: 1.05rem;}

/* Grid Elrendezés */
.contact-grid {display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 35px; align-items: stretch;}

/* Üveg-Kártyák (Glassmorphism) */
.contact-info-card, .email-direct-card {background: rgba(30, 41, 59, 0.65) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 24px; padding: 40px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; justify-content: space-between;}

.contact-title-group {display: flex; align-items: center; gap: 18px; margin-bottom: 25px;}

.contact-icon-header {width: 50px; height: 50px; background: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(37, 99, 235, 0.4); border-radius: 14px; display: flex; align-items: center;
	justify-content: center; font-size: 1.4rem;}

.contact-info-card h3 {color: #ffffff; font-size: 1.5rem; font-weight: 800; margin: 0;}

.shop-location {color: #94a3b8; font-size: 0.95rem; margin-top: 4px;}

.shop-location i {color: #f97316;}

/* Belső Info Dobozok */
.contact-info-block {background: rgba(15, 23, 42, 0.6) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 16px; padding: 22px; margin-bottom: 20px;}

.contact-info-block h4 {color: #f8fafc; font-size: 1rem; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;}
.contact-info-block h4 i {color: #38bdf8;}

/* Telefon Sorok Neon Díszítéssel */
.contact-phone-row {display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); margin-bottom: 10px;
	transition: transform 0.3s ease;}
.contact-phone-row:hover {transform: translateX(5px);}

.phone-icon-box {width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;}
.theme-blue .phone-icon-box {background: rgba(59, 130, 246, 0.2); color: #60a5fa;}
.theme-purple .phone-icon-box {background: rgba(168, 85, 247, 0.2); color: #c084fc;}

.phone-data {display: flex; flex-direction: column;}
.phone-role {font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; font-weight: 700;}
.phone-number {color: #ffffff; font-weight: 800; font-size: 1.1rem; text-decoration: none; transition: color 0.3s;}
.phone-number:hover {color: #38bdf8;}

.phone-name {font-size: 0.82rem; color: #cbd5e1;}

/* Nyitvatartás Kártya (Narancs kiemelés) */
.theme-orange-card {border-color: rgba(249, 115, 22, 0.3) !important; background: rgba(249, 115, 22, 0.08) !important; margin-bottom: 0;}
.theme-orange-card h4 i {color: #fb923c;}

.open-hours {color: #f1f5f9; font-size: 0.95rem;}
.lunch-hours {color: #fb923c; font-size: 0.9rem; font-weight: 600; margin-top: 6px;}

/* ==============================================
	E-MAIL KÁRTYA (JOBB OLDAL)
	============================================ */
.email-direct-card {text-align: center; align-items: center; justify-content: center;}
.email-icon-circle {width: 80px; height: 80px; background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(6, 182, 212, 0.1) 70%); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 20px; box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);}

.email-direct-card h3 {color: #ffffff; font-size: 1.6rem; font-weight: 800; margin-bottom: 12px;}

.btn-email-cta {display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%); color: #ffffff !important; font-weight: 700;
	font-size: 1.05rem; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4); transition: all 0.35s ease;}
.btn-email-cta:hover {transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 35px rgba(6, 182, 212, 0.6);}

/* Fizetési opciók */
.payment-methods {margin-top: 35px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); width: 100%;}
.payment-methods h4 {font-size: 0.85rem; color: #94a3b8; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px;}

.payment-icons {display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;}

.pay-badge {background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: #f8fafc; display: inline-flex;
	align-items: center; gap: 8px;}

.pay-cash i {color: #34d399;}
.pay-card i {color: #60a5fa;}
.pay-bank i {color: #fb923c;}

/* ==============================================
	TÉRKÉP DOBOZ STÍLUS
	============================================ */
.osm-map-box {margin-top: 50px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);}

.map-footer-bar {background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); padding: 14px 24px; font-size: 0.9rem; color: #cbd5e1; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex;
	justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;}

.map-footer-bar a {color: #38bdf8; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s;}
.map-footer-bar a:hover {color: #f97316;}

/* Mobil nézet */
@media (max-width: 992px) {
	.contact-grid {grid-template-columns: 1fr;}
	.contact-info-card, .email-direct-card {padding: 30px 20px;}
}

/* ==============================================
	10. LÁBJEGYZÉK (FOOTER)
	============================================ */
footer {padding: 10px 0; border-top: 1px solid var(--border-color); text-align: center; background-color: #1a2659; color: orange;}

/* ==============================================
	11. TOAST ÉRTESÍTŐ ABLAK (KONSZOLIDÁLT MODERNEBB DIZÁJN)
	============================================ */
.toast-card {position: fixed; bottom: 30px; right: 30px; width: 340px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); border-left: 5px solid #ef4444; border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-radius: 12px; padding: 20px; z-index: 9999;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: translateY(0); opacity: 1;}

.toast-card.hidden {transform: translateY(100px); opacity: 0; pointer-events: none;}

.toast-header {display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid var(--border-color); padding-bottom: 8px;}

.toast-dot {width: 10px; height: 10px; background-color: #ef4444; /* Pulzáló piros pötty */ border-radius: 50%; margin-right: 8px; display: inline-block; animation: pulse 1.5s infinite;}

.toast-close {background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-muted); line-height: 1;}

.toast-body {font-size: 0.95rem; color: var(--text-main); font-weight: 500;}

@keyframes pulse {
	0% {transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);}
	70% {transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);}
	100% {transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);}
}

/* ==============================================
	VISSZA A TETEJERÉ GOMB
	============================================ */
#scroll-to-top {position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background-color: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 1.2rem; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 9998; /* Éppen a toast értesítő alatt marad, ha az is felugrik */
}

#scroll-to-top.show {opacity: 1; pointer-events: auto;}
#scroll-to-top:hover {background-color: var(--primary-light); /* Narancssárgára vált hover esetén */ transform: translateY(-3px);}

/* Ha a kijelző kisebb, picit feljebb toljuk, hogy ne takarjon el fontos elemeket */
@media (max-width: 576px) {
	#scroll-to-top {bottom: 20px; right: 20px; width: 40px; height: 40px;}
}

/* ==============================================
	12. RESZPONSZÍV MÉRETEZÉS (MEDIA QUERIES)
	============================================ */
/* Táblagép és Mobil közös finomítások */
@media (max-width: 992px) {
	.hero h1 {font-size: 2.2rem;}
	.fishing-grid, .contact-grid, .grid-references {grid-template-columns: 1fr; gap: 40px;}
	.header-top {position: relative; /* Mobilon ne ragadjon le, mert túl sok helyet foglalna */ padding: 10px 0;}
	.header-top .container {flex-direction: column;	align-items: center; text-align: center;}

	.top-info-group {flex-direction: column; gap: 8px; align-items: center;}
	.main-header {position: relative; /* Szintén elengedem a fix pozíciót, így nem takarja ki a hero részt */ top: 0; padding: 15px 0;}
	.header-flex {flex-direction: column; gap: 15px;}
	.nav-menu {display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;}
	.nav-menu a {margin-left: 0; padding: 6px 10px; font-size: 0.85rem;}
	.hero {padding: 60px 0; /* Mivel már nem fix a header, nincs szükség hatalmas felső paddingre */}
}

/* Kifejezetten mobiltelefonok (kis kijelzők) */
@media (max-width: 576px) {
	.container {width: 92%;}
	.hero h1 {font-size: 1.8rem;}
	.hero p {font-size: 0.95rem;}
	.hero-actions {flex-direction: column; gap: 10px; align-items: stretch;}
	.hero-actions .btn-gradient {width: 100%; text-align: center;}
	.corkboard-wood-frame {border-width: 8px; /* Kisebb keret a faliújságnak */ padding: 25px 10px;}
	.sticky-note {width: 100%; /* Kitölti a képernyőt a cetli */ min-height: auto; transform: none !important; /* Mobilon jobb kikapcsolni a forgatást az olvashatóságért */}
	.sticky-note:hover {transform: scale(1.01) !important;}
	.grid-services {grid-template-columns: 1fr;}
	.service-card {padding: 25px;}
	.fishing-text h2 {font-size: 1.8rem;}
	.fishing-grid img {width: 100%;	height: auto; border-radius: 12px;}
	.toast-card {left: 15px; right: 15px; bottom: 15px; width: calc(100% - 30px);}
}

/* ==============================================
	KÖZVETLEN E-MAIL KÁRTYA ÉS FIZETÉSI MÓDOK
	============================================ */
.email-direct-card {background: var(--bg-card); padding: 40px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: var(--shadow-soft); text-align: center; display: flex;
	flex-direction: column; align-items: center; justify-content: center;}

.email-icon-circle {width: 70px; height: 70px; background: rgba(37, 99, 235, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px;}
.email-direct-card h3 {font-size: 1.4rem; font-weight: 700; margin-bottom: 10px;}
.email-desc {margin-bottom: 25px; font-size: 0.95rem; max-width: 400px;}

.btn-email-cta {display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; padding: 14px 28px; border-radius: 10px;}

.payment-methods {margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--border-color); width: 100%;}
.payment-methods h4 {font-size: 0.9rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;}

.payment-icons {display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;}

.pay-badge {background: var(--bg-sub); border: 1px solid var(--border-color); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--text-main); display: inline-flex; align-items: center;
	gap: 6px;}

.pay-badge i {color: var(--primary);}

/* ==============================================
	GYAKRAN ISMÉTELT KÉRDÉSEK (GYIK / ACCORDION)
	============================================ */
.faq-section {background-color: var(--bg-sub); padding: 60px 0;}

.faq-container {max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px;}

.faq-item {background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: border-color 0.3s ease;}
.faq-item[open] {border-color: var(--primary);}

.faq-question {padding: 18px 22px; font-weight: 700; font-size: 1.05rem; color: var(--text-main); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none;}
.faq-question::-webkit-details-marker {display: none; /* Safari kompatibilitás */}

.faq-icon {color: var(--primary); transition: transform 0.3s ease;}
.faq-item[open] .faq-icon {transform: rotate(180deg);}

.faq-answer {padding: 0 22px 20px 22px; color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; border-top: 1px solid transparent;}

/* ==============================================
	MOBIL GYORSHÍVÓ BAR (FIXED BOTTOM)
	============================================ */
.mobile-quick-call-bar {display: none; /* Alapértelmezetten rejtve asztali gépen */ position: fixed; bottom: 0; left: 0; width: 100%; background: #ffffff; padding: 10px 15px; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 9999; gap: 10px;}

.quick-call-btn {flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 10px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.9rem;
	color: #ffffff; text-align: center;}

.btn-bolt {background: #10b981; /* Zöld szín az üzletnek */}
.btn-it {background: #2563eb; /* Kék szín az IT-nek */}

/* Megjelenítés és helyigény igazítása mobilon */
@media (max-width: 768px) {
	.mobile-quick-call-bar {display: flex;}

	/* Margó a lábléc alján, hogy a mobil sáv ne takarja ki a tartalmat */
	footer {padding-bottom: 70px !important;}

	/* Vissza a tetejére gomb feljebb tolása mobilon */
	#scroll-to-top {bottom: 75px !important;}
}
/* ==============================================
	SZÍNES & ANIMÁLT GYIK (FAQ) STÍLUSOK
	============================================ */
/* 1. Dinamikus Szekció Háttér finom ráccsal */
.faq-section {padding: 90px 0; position: relative; overflow: hidden; background-color: #0f172a; /* Sötét, elegáns alap vagy mély szürke-kék */
	background-image:
		radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
		radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.12) 0px, transparent 50%),
		radial-gradient(at 50% 50%, rgba(147, 51, 234, 0.08) 0px, transparent 50%);
}

/* Finom rács-háló mintázat a háttér textúrához */
.faq-section::before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none;}

/* 2. Elmosódott, lebegő színfoltok (Blobs) */
.faq-bg-blob {position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; pointer-events: none; animation: blobFloat 10s infinite alternate ease-in-out;}
.blob-1 {top: 10%; left: -5%; width: 300px; height: 300px; background: #3b82f6;}
.blob-2 {bottom: 10%; right: -5%; width: 350px; height: 350px; background: #10b981; animation-delay: -3s;}
.blob-3 {top: 40%; left: 40%; width: 250px; height: 250px; background: #8b5cf6; animation-delay: -6s;}

@keyframes blobFloat {
	0% {transform: translate(0, 0) scale(1);}
	100% {transform: translate(30px, 40px) scale(1.1);}
}

/* Header stílus igazítása a sötét hátttérhez */
.faq-header {max-width: 650px; margin: 0 auto 45px auto;}

.faq-header .section-title {color: #ffffff !important;}

.faq-badge {display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); color: #60a5fa; border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase;}

.faq-subtitle {color: #94a3b8; font-size: 1.05rem;}

/* 3. Glassmorphism Üveg-Kártyák */
.faq-container {max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px;}

.faq-item {background: rgba(30, 41, 59, 0.7); /* Félátlátszó sötét üveg */ backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); overflow: hidden; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);}
.faq-item:hover {transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.25); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);}

/* Kérdések Szövege */
.faq-question {padding: 22px 24px; font-weight: 600; font-size: 1.08rem; color: #f8fafc; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; gap: 15px;}

.faq-question::-webkit-details-marker {display: none;}

.faq-q-text {display: flex; align-items: center; gap: 16px;}

/* Neon Ikon Dobozok */
.faq-icon-box {width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s ease, box-shadow 0.3s ease;}

.faq-item:hover .faq-icon-box {transform: scale(1.1) rotate(6deg);}

/* Nyíl Gomb */
.faq-arrow-wrapper {width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; transition: all 0.3s ease;}

.faq-icon {color: #94a3b8; font-size: 0.85rem; transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;}

.faq-item[open] .faq-arrow-wrapper {background: #3b82f6; border-color: #60a5fa;}

.faq-item[open] .faq-icon {transform: rotate(180deg); color: #ffffff;}

/* Válasz Terület */
.faq-answer {padding: 0 24px 24px 84px; color: #cbd5e1; font-size: 0.98rem; line-height: 1.65; animation: faqFadeDown 0.4s ease forwards;}

.faq-answer-content strong {color: #ffffff;}
.faq-answer-content ul {margin-top: 10px; padding-left: 20px;}
.faq-answer-content li {margin-bottom: 6px;}

@keyframes faqFadeDown {
	from {opacity: 0; transform: translateY(-8px);}
	to {opacity: 1; transform: translateY(0);}
}

/* TÉMA TÍPUSOK (Sötét neon kiemelések) */
.faq-theme-green .faq-icon-box {background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3);}
.faq-theme-green[open] {border-color: rgba(16, 185, 129, 0.6); box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);}

.faq-theme-blue .faq-icon-box { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3);}
.faq-theme-blue[open] { border-color: rgba(59, 130, 246, 0.6); box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);}

.faq-theme-purple .faq-icon-box { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3);}
.faq-theme-purple[open] { border-color: rgba(168, 85, 247, 0.6); box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);}

.faq-theme-orange .faq-icon-box { background: rgba(249, 115, 22, 0.2); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3);}
.faq-theme-orange[open] { border-color: rgba(249, 115, 22, 0.6); box-shadow: 0 0 25px rgba(249, 115, 22, 0.15);}

/* Mobil nézet */
@media (max-width: 600px) {
	.faq-question {padding: 18px 16px; font-size: 0.98rem;}
	.faq-answer {padding: 0 16px 20px 16px;}
}