/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;

  background-image: url('../assets/images/hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: -1;
}

/* ROOT VARIABLES */
:root {
  --accent: #2cf73d;
  --accent-hover: #06f168da;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --transition: 0.4s ease;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: transparent;
  padding: 40px 20px 80px;
  overflow: hidden;
}

/* OVERLAY */
.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--bg-overlay);
  z-index: 1;
  display: none;
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* TEXT UNDER TITLE (TOGGLABLE) */
.hero__text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero__text.visible {
  max-height: 200px;
  opacity: 1;
}

/* NAV BUTTONS */
.hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px; 
}

.btn {
  padding: 10px 20px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: transparent;
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: all var(--transition);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--accent-hover);
  z-index: -1;
  transform: scale(0);
  transition: transform var(--transition);
}

.btn:hover::before {
  transform: scale(1);
}

.btn:hover {
  color: #000;
}

/* TOGGLE BUTTON (BOTTOM-RIGHT) */
.hero__toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  border: none;
  color: #000;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 3;
  transition: background var(--transition);
}

.hero__toggle:hover {
  background: var(--accent-hover);
}

/* ICONS (BOTTOM-LEFT) */
.hero__icons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero__icons img {
  width: 50px;
  height: 50px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.hero__icons img:hover {
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  z-index: 2;
  opacity: 0.8;
}
/* RESPONSIVE */
@media (max-width: 600px) {
  .hero__title {
    font-size: 2rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .hero__toggle {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .hero__icons img {
    width: 28px;
    height: 28px;
  }
}
/* ===== FOOTER STYLES ===== */
.footer {
  position: relative;
 background: transparent;
  color: #fff;
  padding: 50px 20px 30px;
  overflow: hidden;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
}

.footer__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* AGREEMENTS TOP */
.footer__agreements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer__agreements a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.footer__agreements a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--accent-hover);
  transition: transform 0.3s ease;
}

.footer__agreements a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* BOTTOM SECTION */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--accent-hover);
}

/* LEFT CONTACT */
.footer__contact {
  flex: 1 1 250px;
}

.footer__contact h4 {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.2rem;
}

.footer__contact p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer__contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
}

/* CENTER LOGO */
.footer__center {
  flex: 1 1 200px;
  text-align: center;
}

.footer__logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(1.2);
}

/* RIGHT BUTTONS */
.footer__buttons {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer__btn {
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer__btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  opacity: 0.8;
  z-index: 2;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__buttons {
    align-items: center;
  }

  .footer__contact {
    text-align: center;
  }
}
.feature-slider {
 background: #0b0b0b;
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-set {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: opacity 1s ease;
}

.feature-set.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.feature-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-card {
  background: #111;
  border: 1px solid var(--accent-hover);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  transition: transform 0.4s ease;
  box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.feature-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.feature-text {
  padding: 18px;
  background: #000;
  text-align: center;
}

.feature-text h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-text p {
  color: #fcfcfc;
  font-size: 0.95rem;
}

.feature-title {
  display: block;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.feature-title h2 {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.feature-title p {
  color: #ffffff;
  font-size: 1.1rem;
}
.intro-text {
  position: relative;
  background-color: #0b0b0b;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}

.intro-text__content {
  max-width: 800px;
  text-align: center;
  z-index: 2;
}

.intro-text__title {
  font-size: 48px;
  font-weight: 800;
  color: #00ff00;
  text-shadow: 0 0 10px #00ff00;
}

.intro-text__title span {
  color: white;
  text-shadow: none;
}

.intro-text__desc {
  font-size: 18px;
  color: white;
  margin-top: 20px;
  line-height: 1.6;
}

.intro-text__decor-left,
.intro-text__decor-right {
  width: 120px;
  height: 120px;
  border: 3px dashed white;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
  flex-shrink: 0;
  border: 2px solid;
  border-image: linear-gradient(45deg, #00ff00, #00ffff) 1;

}

.intro-text__decor-left {
  margin-right: 60px;
}

.intro-text__decor-right {
  margin-left: 60px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

.career-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 80px 0;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.career-content {
  flex: 1 1 500px;
  text-align: left;
}

.career-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.career-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.career-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  background: #161616;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
}

.stat .number {
  font-size: 2.4rem;
  font-weight: bold;
  color: #32ff32;
}

.stat .label {
  font-size: 0.95rem;
  color: #aaa;
}

.career-btn {
  display: inline-block;
  background-color: #32ff32;
  color: #000;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.career-btn:hover {
  background-color: #28cc28;
}

.career-image {
  flex: 1 1 500px;
  text-align: center;
}

.career-image img {
  max-width: 100%;
  border-radius: 12px;
}
.section-divider {
  width: 100%;
  height: 4px;
  background-color: #32ff32; 
  box-shadow: 0 0 10px #32ff32;
  margin-top: 0px;
}



.section-bus {
  background-color: #0b0b0b;
  padding: 60px 20px;
  color: white;
  font-family: sans-serif;
}

.bus-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.bus-text {
  flex: 1 1 300px;
}

.bus-text h2 {
  color: #32ff32;
  font-size: 28px;
  margin-bottom: 10px;
}

.bus-text p {
  color: #ccc;
  line-height: 1.6;
}

.bus-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 2px solid #32ff32;
  background: transparent;
  color: #32ff32;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-solid {
  background: #32ff32;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #32ff32;
  color: #000;
}

.btn-solid:hover {
  background-color: #28cc28;
}
.bus-menu {
  flex: 1 1 200px;
  background: #111;
  border: 1px solid #32ff32;
  padding: 20px;
}

.bus-menu h4 {
  color: #32ff32;
  margin-bottom: 10px;
}

.bus-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bus-menu li {
  color: #aaa;
  margin-bottom: 6px;
}

.bus-features h3 {
  color: #32ff32;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature {
  background: #111;
  border: 1px solid #32ff32;
  padding: 20px;
  text-align: center;
}

.feature img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.feature h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.4;
}
.bus-buttons button.active {
  background-color: #00ff00;
  color: #000;
}
.bus-video {
  flex: 1 1 300px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.bus-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInOut 10s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.feature-icon {
  font-size: 48px;
  color: #32ff32;
  margin-bottom: 15px;
}
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@media (max-width: 900px) {
  .bus-top,
  .career-container {
    flex-direction: column;
    align-items: center;
  }
  
  .bus-text,
  .bus-video,
  .bus-menu,
  .career-content,
  .career-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bus-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .feature-card, .feature-box, .feature {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.6rem;
  }

  .btn,
  .btn-outline,
  .btn-solid {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .bus-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .bus-buttons button {
    width: 100%;
  }

  .intro-text__title {
    font-size: 2rem;
  }

  .intro-text__desc {
    font-size: 1rem;
  }
   .bus-video {
    aspect-ratio: auto;
    height: 200px;
    max-width: 100%;
  }
}
.ps5-features-section {
  background-color: #0b0b0b00;
  padding: 60px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.ps5-features-title {
  font-size: 2.5rem;
  color: #32ff32;
  margin-bottom: 40px;
  font-weight: 700;
}

.ps5-features-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.ps5-feature-item {
  flex: 1 1 180px;
  max-width: 220px;
  color: white;
}

.ps5-feature-item i {
  font-size: 48px;
  color: #32ff32;
  margin-bottom: 15px;
}

.ps5-feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #32ff32;
}

.ps5-feature-item p {
  font-size: 1.1rem;
  color: #fdfdfd;
  line-height: 1.5;
}
.ps5-features-section {
  background-color: #0b0b0b00;
  padding: 60px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  width: 100vw; 
  box-sizing: border-box; 
  
}

.ps5-features-title {
  font-size: 2.5rem;
  color: #32ff32;
  margin-bottom: 40px;
  font-weight: 700;
  max-width: 1100px; 
  margin-left: auto;
  margin-right: auto;
}

.ps5-features-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px; 
  margin: 0 auto;
}

.ps5-feature-item {
  flex: 1 1 180px;
  max-width: 220px;
  color: white;
}



/* Responsive */
@media (max-width: 768px) {
  .ps5-features-grid {
    flex-direction: column;
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .ps5-feature-item {
    max-width: 100%;
  }
}

.what-we-do {
  background-color: #0b0b0b;
  color: white;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.what-we-do .container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.description {
  flex: 1 1 400px;
  max-width: 480px;
}

.description h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #32ff32;
  margin-bottom: 20px;
}

.description p {
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 16px;
}

.services-grid {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  gap: 30px;
}

.service-card {
  background: #111;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 0 8px rgba(50, 255, 50, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #32ff32;
}


.service-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #32ff32;
  margin: 0;
}

.service-card a {
  color: #32ff32;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.service-card a span {
  font-weight: 900;
  margin-left: 6px;
}

.service-card a:hover {
  color: #06f168da;
}
.service-card .icon img {
  display: block;
  width: 100px;
  height: 100px;
}
/* Responsive */
@media (max-width: 900px) {
  .what-we-do .container {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.controller-tabs {
  background-color: #0b0b0b;
  padding: 40px 20px 80px;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1950px;
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #32ff32;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.tab-btn {
  background: none;
  border: none;
  color: #777;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: #32ff32;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 15%;
  right: 15%;
  height: 3px;
  background-color: #32ff32;
  border-radius: 2px;
}

.tab-dropdown {
  position: relative;
}

.dropdown-btn {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b0b0b;
  border: 1px solid #32ff32;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 10;
}

.tab-dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content .tab-btn {
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  color: #777;
}

.dropdown-content .tab-btn:hover {
  color: #32ff32;
}

.tab-content {
  display: none;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.tab-content.active {
  display: flex;
}

.tab-image {
  flex: 1 1 500px;
  max-width: 500px;
}

.tab-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.tab-text {
  flex: 1 1 600px;
  max-width: 600px;
  color: #eee;
  text-align: left;
}

.tab-text h2 {
  font-size: 2.5rem;
  color: #32ff32;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tab-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #ccc;
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid #32ff32;
  background: transparent;
  color: #32ff32;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #32ff32;
  color: #0b0b0b;
}

/* Responsive */
@media (max-width: 900px) {
  .tab-content {
    flex-direction: column;
    text-align: center;
  }

  .tab-text {
    max-width: 100%;
  }

  .tab-image {
    max-width: 100%;
  }
}
.reviews-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .reviews-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fcf9f9;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
  }
  
  .review-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 25px 20px 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }
  
  .review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .review-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
  
  .review-text {
    font-style: italic;
    color: #555;
    text-align: center;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .review-rating {
    font-size: 1.3rem;
    color: #f39c12; 
  }
  
  @media (max-width: 600px) {
    .reviews-title {
      font-size: 2rem;
    }
    
    .review-card {
      padding: 20px 15px 25px;
    }
    
    .review-avatar {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
    }
  }
 .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.faq-question {
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "➤";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-modern {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-title {
  text-align: center;
  font-size: 2.5rem;
  color: #32ff32;
  margin-bottom: 40px;
}
.faq-block {
  background: #111;
  border: 1px solid #32ff32;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-toggle {
  background: transparent;
  color: #32ff32;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  padding: 20px;
  border: none;
  cursor: pointer;
  position: relative;
}
.faq-toggle .arrow {
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}
.faq-block.active .arrow {
  transform: rotate(90deg);
}
.faq-content {
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.4s ease;
  color: #ccc;
}
.faq-block.active .faq-content {
  padding: 0 20px 20px;
  max-height: 300px;
  opacity: 1;
}

.contact-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.contact-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-hero {
  width: 100%;
  overflow: hidden;
}
.contact-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-size: 2.5rem;
  color: #32ff32;
  margin-bottom: 20px;
}
.contact-desc {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.contact-item {
  background: #111;
  border: 1px solid #32ff32;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.contact-item h3 {
  font-size: 1.2rem;
  color: #32ff32;
  margin-bottom: 10px;
}
.contact-item p {
  color: #ccc;
}
.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(50, 255, 50, 0.2);
}
.contact-item.full {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .contact-item.full {
    grid-column: span 1;
  }
}

.contact-form-block {
  background-color: #0b0b0b;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.form-title {
  font-size: 2.2rem;
  color: #32ff32;
  margin-bottom: 30px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: #111;
  border: 1px solid #32ff32;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}
.contact-form button {
  background: #32ff32;
  color: #000;
  padding: 12px 26px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #28cc28;
}

 #cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #242b2400;
    border-radius: 12px;
    box-shadow: 0 0 20px #00000000;
    padding: 20px 30px;
    z-index: 1000;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
  }

  .cookie-content {
    position: relative;
  }

  #cookie-banner p {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.5;
  }

  #cookie-banner a {
    color: #32ff32;
    text-decoration: underline;
  }

  #cookie-banner button {
    font-family: 'Segoe UI', sans-serif;
  }

  #accept-cookies {
    background: #4ae74a;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px #32ff32aa;
    transition: transform 0.2s ease;
  }

  #accept-cookies:hover {
    transform: scale(1.05);
  }

  #close-cookie-banner {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #222;
    color: #32ff32;
    border: 1px solid #32ff32;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    cursor: pointer;
    box-shadow: 0 0 10px #32ff32aa;
    transition: background 0.2s;
  }

  #close-cookie-banner:hover {
    background: #111;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translate(-50%, 100px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
 