/* ===== KURDI ELEKTRO - Global Stylesheet ===== */
:root {
  --red: #BB1C2E;
  --red-dark: #8e1322;
  --red-light: #d42038;
  --black: #111111;
  --dark: #1a1a1a;
  --gray-dark: #2d2d2d;
  --gray: #444444;
  --gray-mid: #666666;
  --gray-light: #999999;
  --silver: #cccccc;
  --white: #ffffff;
  --bg-dark: #0f0f0f;
  --bg-section: #f5f5f5;
  --font: 'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--black);
  padding: 8px 0;
  font-size: 13px;
  color: var(--silver);
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}
.topbar a {
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--red); }
.topbar svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 20px 6px 14px;
  z-index: 1;
}
.logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: skewX(-12deg);
  border-radius: 3px;
  z-index: -1;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  position: relative;
}
nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li { position: relative; }
nav ul li > a {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav ul li > a:hover,
nav ul li > a.active {
  background: var(--red);
  color: var(--white);
}
/* Dropdown */
.dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.7;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gray-dark);
  min-width: 220px;
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--silver);
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--red);
  color: var(--white);
  padding-left: 24px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO / SLIDER ===== */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 5;
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 56px);
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
  font-size: clamp(14px, 2vw, 20px);
  color: var(--silver);
  max-width: 640px;
  margin-bottom: 30px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(187,28,46,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--gray-dark); }

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}
.section-title p {
  color: var(--gray-mid);
  max-width: 600px;
  margin: 14px auto 0;
  font-size: 16px;
}
.title-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title p { color: var(--gray-light); }
.section-gray { background: var(--bg-section); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #e8e8e8;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card-body h3 .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-body h3 .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  display: block;
}
.service-card-body p {
  color: var(--gray-mid);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-body a {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card-body a:hover { gap: 10px; }

/* ===== WHY US BOXES ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-box {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--transition), background var(--transition);
}
.why-box:hover {
  border-color: var(--red);
  background: rgba(187,28,46,0.08);
}
.why-box svg {
  width: 44px;
  height: 44px;
  fill: var(--red);
  margin-bottom: 16px;
}
.why-box h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.why-box p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--red);
  padding: 36px 0;
}
.contact-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-strip h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
  font-weight: 700;
}
.contact-strip p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/main-slider2.jpg') center/cover;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p {
  color: var(--gray-light);
  font-size: 16px;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--gray-light);
  font-size: 13px;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ===== INFO BOXES (service detail) ===== */
.info-box {
  background: var(--bg-section);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.info-box h3 { color: var(--dark); font-size: 17px; margin-bottom: 10px; }
.info-box ul li {
  padding: 6px 0;
  color: var(--gray);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.info-box ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.location-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #e0e0e0;
}
.location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.location-body {
  padding: 26px;
}
.location-body h3 {
  font-size: 19px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}
.location-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.location-item:last-child { border-bottom: none; }
.location-item svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.location-item a { color: var(--dark); font-weight: 500; }
.location-item a:hover { color: var(--red); }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e8e8e8;
}
.contact-form h2 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(187,28,46,0.1);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: 6px;
  margin-top: 16px;
  font-weight: 500;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #e0e0e0;
}
.map-wrapper iframe { display: block; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--gray-dark);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(187,28,46,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition), transform var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(187,28,46,0.7);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver);
  font-size: 14px;
}

/* ===== ROLUNK ===== */
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text h2 span { color: var(--red); }
.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px;
}
.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--bg-section);
  border-radius: 8px;
  flex: 1;
  min-width: 100px;
  border-bottom: 3px solid var(--red);
}
.stat-box .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-box .lbl {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 6px;
}

/* ===== BANNER CTA ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--dark);
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(22px, 4vw, 38px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner p {
  color: var(--silver);
  margin-bottom: 28px;
  font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--silver);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col p { font-size: 14px; line-height: 1.75; color: var(--gray-light); margin-bottom: 16px; }
.footer-logo img { height: 45px; margin-bottom: 16px; filter: brightness(1.2); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--red); background: var(--red); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--silver); }
.footer-social a:hover svg { fill: var(--white); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--gray-light);
  font-size: 14px;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--gray-light);
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--gray-light); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-mid);
}
.footer-bottom a { color: var(--gray-mid); }
.footer-bottom a:hover { color: var(--silver); }
.footer-recommend {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-recommend a {
  font-size: 11px;
  color: var(--gray-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 3px;
  transition: var(--transition);
}
.footer-recommend a:hover { color: var(--silver); border-color: rgba(255,255,255,0.25); }

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-flex { grid-template-columns: 1fr; }
  .about-img img { height: 280px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-top: 2px solid var(--red);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li > a { padding: 12px 24px; border-radius: 0; font-size: 15px; }
  .dropdown-menu {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-radius: 0;
  }
  .dropdown-menu li a { padding: 10px 40px; }
  .dropdown > a::after { content: ''; }
  .hero { height: 420px; }
  .hero-content h1 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-recommend { justify-content: center; }
  .locations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 16px; }
  .contact-form { padding: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .hero { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ===== PÁLYÁZATI LOGO (fixált, jobb alsó sarok) ===== */
.palyazat-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 110px;
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  background: #fff;
  padding: 4px;
}
.palyazat-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}
.palyazat-badge img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
