/* Reset & Base */
* {margin:0;padding:0;box-sizing:border-box;font-family: 'Exo 2', sans-serif;}
body.joaf-body {background:#006600;color:#ffffff;line-height:1.6;scroll-behavior:smooth;}
a {text-decoration:none;color:inherit;}
.joaf-container {width:90%;max-width:1200px;margin:0 auto;}

/* Top Banner */
.joaf-top-banner {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  background: rgba(255,0,0,0.15);
  overflow: hidden;
}
.joaf-banner-card {
  background: rgba(255,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 6px 15px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 0.3s, background 0.3s;
}
.joaf-banner-card:hover {
  transform: translateY(-4px);
  background: rgba(255,0,0,0.7);
}
.joaf-responsible-parallax {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #006b3c 0%, #ff0000 100%);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  overflow: hidden;
}
.joaf-responsible-parallax::before {
  content: '';
  position: absolute;
  inset:0;
  opacity: 0.15;
  z-index:0;
}

.joaf-responsible-parallax .joaf-container {
  position: relative;
  z-index:1;
}

.joaf-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.joaf-step-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 6px solid #FFD700;
  border-radius: 20px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.joaf-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.joaf-step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1);}
  50% { transform: scale(1.2);}
}

.joaf-step-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #FFD700;
}

.joaf-step-card p,
.joaf-step-card ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.joaf-step-card ul {
  padding-left: 20px;
  list-style-type: disc;
}

.joaf-step-final {
  grid-column: span 2;
  background: rgba(0,0,0,0.2);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border-left-color: #FF0000;
}
/* Header */
.joaf-header-creative {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Exo 2', sans-serif;
  background: linear-gradient(135deg, #006600, #FF0000);
  color: #fff;
}

/* Верхняя полоска */
.joaf-alert-bar {
  background: #FFD700;
  color: #006600;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0;
}

/* Верхняя панель */
.joaf-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  position: relative;
  backdrop-filter: blur(6px);
}

/* Логотип */
.joaf-logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.joaf-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.joaf-logo-glow {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(255,215,0,0.4), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.joaf-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #FF0000,  #FFD700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
}

/* Навигация */
.joaf-nav-section ul {
  display: flex;
  gap: 25px;
  list-style: none;
  transition: max-height 0.4s ease;
}

.joaf-nav-section ul li a {
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}

.joaf-nav-section ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}

.joaf-nav-section ul li a:hover::after {
  width: 60%;
}

/* Кнопки */
.joaf-buttons-section {
  display: flex;
  gap: 10px;
}

.joaf-btn-primary,
.joaf-btn-secondary {
  padding: 8px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.joaf-btn-primary {
  background: #FFD700;
  color: #006600;
}

.joaf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.joaf-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.joaf-btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

/* Burger */
.joaf-burger-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.joaf-burger-mobile span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

/* Декоративные фигуры */
.joaf-decorative-shapes span {
  position: absolute;
  display: block;
  animation: floatShapes 6s ease-in-out infinite;
}

.shape-circle {width:15px;height:15px;background:rgba(255,215,0,0.3);border-radius:50%;}
.shape-diamond {width:12px;height:12px;background:rgba(255,0,0,0.3);transform:rotate(45deg);}
.shape-star {width:10px;height:10px;background:rgba(0,102,0,0.3);clip-path: polygon(50% 0%,61% 38%,98% 38%,68% 59%,79% 91%,50% 70%,21% 91%,32% 59%,2% 38%,39% 38%);}
.shape-line {width:2px;height:20px;background:rgba(255,215,0,0.4);}

.shape-circle:nth-child(1){top:10%; left:5%;}
.shape-diamond:nth-child(2){top:50%; left:80%;}
.shape-star:nth-child(3){top:30%; left:40%;}
.shape-line:nth-child(4){top:70%; left:60%;}

@keyframes glowPulse {
  0% {transform: scale(1);}
  100% {transform: scale(1.3);}
}

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

@keyframes floatShapes {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-20px) rotate(45deg);}
}

/* Hero */
.joaf-hero-creative {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Exo 2', sans-serif;
  color: #fff;
}

/* Фон с градиентом */
.joaf-hero-bg {
  position: absolute;
  top: 0; left: 0; right:0; bottom:0;
  background: linear-gradient(135deg, #006600, #FF0000, #FFD700);
  z-index: 0;
  filter: blur(60px);
}

/* Полупрозрачная тень для читаемости текста */
.joaf-hero-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.35);
  z-index:1;
}

.joaf-hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Левый блок: текст + кнопка */
.joaf-hero-left {
  flex:1;
  animation: slideInLeft 1.2s ease forwards;
}

.joaf-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(45deg, #FFD700,  #006600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

.joaf-hero-subtitle {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #fff;
}

.joaf-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 12px;
  background: #FFD700;
  color: #006600;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.joaf-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Правый блок: список преимуществ */
.joaf-hero-right {
  flex:1;
  display: flex;
  justify-content: flex-end;
}

.joaf-hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.joaf-hero-features li {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-left: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.joaf-hero-features li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

/* ================= Animated Shapes ================= */
.joaf-hero-animated-shapes span {
  position: absolute;
  display: block;
  animation: floatShapes 8s ease-in-out infinite;
  opacity: 0.5;
}

.shape-circle {width:15px;height:15px;background:rgba(255,215,0,0.3);border-radius:50%; top:20%; left:10%;}
.shape-diamond {width:12px;height:12px;background:rgba(255,0,0,0.3); transform:rotate(45deg); top:50%; left:80%;}
.shape-star {width:12px;height:12px;background:rgba(0,102,0,0.3); clip-path: polygon(50% 0%,61% 38%,98% 38%,68% 59%,79% 91%,50% 70%,21% 91%,32% 59%,2% 38%,39% 38%); top:30%; left:50%;}
.shape-line {width:2px;height:20px;background:rgba(255,215,0,0.4); top:70%; left:60%;}

/* ================= Animations ================= */
@keyframes slideInLeft {
  0% {opacity:0; transform: translateX(-80px);}
  100% {opacity:1; transform: translateX(0);}
}

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

@keyframes floatShapes {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-20px) rotate(45deg);}
}
/* Features */
.joaf-casino-features-creative {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(120deg, #FF0000, #006600);
  color: #fff;
  overflow: hidden;
  font-family: 'Exo 2', sans-serif;
}

.joaf-casino-features-creative .joaf-section-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #FFD700, #006600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

/* Flex для карточек */
.joaf-features-flex {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Карточки */
.joaf-feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.joaf-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Иконки */
.joaf-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #006600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

/* Заголовки и тексты */
.joaf-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.joaf-feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

/* ================= Background Shapes ================= */
.joaf-features-shapes span {
  position: absolute;
  display: block;
  opacity: 0.3;
  animation: floatShapes 10s ease-in-out infinite;
}

.shape-circle {width: 15px; height: 15px; background: #FFD700; border-radius: 50%; top: 10%; left: 15%;}
.shape-diamond {width: 14px; height: 14px; background: #FF0000; transform: rotate(45deg); top: 50%; left: 80%;}
.shape-triangle {width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid #006600; top: 70%; left: 40%;}

/* ================= Animations ================= */
@keyframes floatShapes {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-25px) rotate(45deg);}
}

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


/* Offers */
.joaf-offers-portugal {
  padding: 80px 0;
  background: linear-gradient(135deg, #006600, #FF0000);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  position: relative;
}

/* Карточка */
.joaf-offer-card-portugal {
  position: relative;
  background: linear-gradient(145deg, #008000cc, #FF0000cc);
  border-radius: 30px 10px 30px 10px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  transition: transform 0.4s, box-shadow 0.4s;
}
.joaf-offer-card-portugal:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* Inner flex */
.joaf-offer-inner-portugal {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left */
.joaf-offer-left-portugal {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.joaf-offer-logo-wrapper-portugal {
  position: relative;
  width: 240px; height: 100px;
  margin-bottom: 15px;
}
.joaf-offer-logo-bg-portugal {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD700, #FF0000, #006600);
  filter: blur(15px);
  z-index: -1;
}
.joaf-offer-logo-portugal {
  width: 100%; height: 100%;
  border: 3px solid rgba(255,255,255,0.2);
}

/* Rating */
.joaf-rating-portugal {
  margin-top: 10px;
  color: #FFD700;
}
.joaf-rating-portugal span {
  margin-left: 5px;
  font-weight: bold;
  color: #fff;
}

/* Center */
.joaf-offer-center-portugal {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.joaf-warning-portugal {
  color: #FFD700;
  font-weight: bold;
}

/* Right */
.joaf-offer-right-portugal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.joaf-payments-portugal ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.joaf-payments-portugal li {
  background: rgba(255,215,0,0.2);
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* CTA */
.joaf-btn-portugal {
  display: inline-block;
  padding: 12px 30px;
  margin: 15px 0;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #FFD700,#FF0000,#006600);
  box-shadow: 0 0 25px rgba(255,215,0,0.6);
  transition: all 0.3s ease;
}
.joaf-btn-portugal:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(255,215,0,0.9);
}
/* About */
.joaf-about-creative {
  position: relative;
  padding: 100px 0 60px;
  color: #fff;
  overflow: hidden;
  font-family: 'Exo 2', sans-serif;
}

/* Parallax Background */
.joaf-parallax-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
  /* overlay gradient */
}
.joaf-about-creative::before {
  content: '';
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Container */
.joaf-about-creative .joaf-container {
  position: relative;
  z-index: 2;
}

/* Header */
.joaf-about-header {
  text-align: center;
  margin-bottom: 60px;
}
.joaf-about-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FF0000, #006600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}
.joaf-about-lead {
  font-size: 1.1rem;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature List */
.joaf-about-features-list-creative {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}
.joaf-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 20px 25px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s, box-shadow 0.4s;
}
.joaf-feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Icons */
.joaf-about-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFD700, #FF0000, #006600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

/* Info */
.joaf-feature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.joaf-feature-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f5f5;
}

/* CTA Button */
.joaf-btn-glow {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #FFD700, #FF0000, #006600);
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
  transition: all 0.3s ease;
}
.joaf-btn-glow:hover {
  box-shadow: 0 0 40px rgba(255,215,0,0.9);
  transform: scale(1.05);
}

/* ================= Animations ================= */
@keyframes gradientShift {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}
/* FAQ */
.joaf-faq-parallax {
  position: relative;
  padding: 80px 0;
  background: url('../img/faq-bg.jpg') center/cover fixed no-repeat;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
}
.joaf-faq-parallax::before {
  content: '';
  position: absolute;
  inset:0;
  background: rgba(0,100,0,0.6);
  z-index:0;
}

.joaf-faq-parallax .joaf-container {
  position: relative;
  z-index:1;
}

.joaf-faq-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto 0;
}

.joaf-faq-item {
  background: rgba(255,0,0,0.2);
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.joaf-faq-item:hover {
  transform: translateY(-5px);
}

.joaf-faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.joaf-faq-toggle {
  font-size: 1.5rem;
  color: #FFD700;
}

.joaf-faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #fff;
}

.joaf-faq-item.active .joaf-faq-answer {
  display: block;
}
/* Footer */
.joaf-footer {
  background: linear-gradient(135deg, #006b3c, #ff0000, #FFD700);
  color: #fff;
  padding: 80px 20px 40px;
  font-family: 'Exo 2', sans-serif;
  overflow: hidden;
}

.joaf-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.joaf-footer-logo img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.joaf-footer-logo img:hover {
  transform: scale(1.1);
}
.joaf-footer-logo span {
  margin-left: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

.joaf-footer-age {
  margin: 15px 0;
  font-weight: 600;
  color: #FFD700;
}
.joaf-age-icon {
  font-size: 1.8rem;
  margin-right: 6px;
}

.joaf-footer-lead {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 300px;
}

.joaf-footer-column h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.joaf-footer-column ul {
  list-style: none;
  padding: 0;
}
.joaf-footer-column ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.joaf-footer-column ul li .icon {
  color: #FFD700;
}
.joaf-footer-column ul li a {
  color: #fff;
  text-decoration: none;
}
.joaf-footer-column ul li:hover {
  transform: translateX(5px);
  color: #FFD700;
}

.joaf-footer-seals {
  margin-top: 50px;
  text-align: center;
}
.joaf-footer-seals h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.joaf-footer-seals-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.joaf-footer-seals-grid a img {
  width: 80px;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.joaf-footer-seals-grid a img:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.7));
}

.joaf-footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
}
.joaf-footer-line {
  display: block;
  width: 50px;
  height: 2px;
  background: #FFD700;
  margin: 0 auto 10px;
  border-radius: 2px;
}

.joaf-contact-parallax {
  position: relative;
  padding: 80px 0;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  overflow: hidden;
}
.joaf-contact-parallax::before {
  content: '';
  position: absolute;
  inset:0;
  background: rgba(0,0,0,0.5);
  z-index:0;
}

.joaf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index:1;
}

.joaf-contact-form-wrapper {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.joaf-contact-warning {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #FFD700;
}
.joaf-warning-icon {
  font-size: 2rem;
}

.joaf-contact-form input,
.joaf-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
}
.joaf-contact-form input::placeholder,
.joaf-contact-form textarea::placeholder {
  color: #eee;
}

.joaf-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  background: linear-gradient(135deg, #006b3c, #ff0000);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.joaf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.joaf-contact-info {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.joaf-contact-image {
  max-width: 80%;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.joaf-contact-image:hover {
  transform: scale(1.05);
}

.joaf-contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.joaf-contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.joaf-contact-info ul li .icon {
  font-size: 1.3rem;
  color: #FFD700;
}
/* Animations */
@keyframes fadeUp{0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);}}
@keyframes fadeInUp{0%{opacity:0;transform:translateY(50px);}100%{opacity:1;transform:translateY(0);}}
@keyframes gradientMove{0%{background-position:0% 50%;}50%{background-position:100% 50%;}100%{background-position:0% 50%;}}
@keyframes gradientShift{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}
@keyframes slideDown{0%{transform:translateY(-100%);}100%{transform:translateY(0);}}
@keyframes floatShapes{0%,100%{transform:translateY(0) rotate(0deg);}50%{transform:translateY(-15px) rotate(180deg);}}
@keyframes pulse-bg{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}
@keyframes icon-bounce{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
@keyframes pulseFooter{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}
.joaf-burger-mobile span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Анимация крестика */
.joaf-burger-mobile span.joaf-burger-line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.joaf-burger-mobile span.joaf-burger-line2 {
  opacity: 0;
}

.joaf-burger-mobile span.joaf-burger-line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
.joaf-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.joaf-age-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* Карточка */
.joaf-age-card {
  background: linear-gradient(145deg, #8B0000, #C00000);
  color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: popup-appear 0.5s ease;
}

@keyframes popup-appear {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Закрыть */
.joaf-age-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #FFD700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.joaf-age-close:hover {
  transform: rotate(90deg);
}

/* Хедер */
.joaf-age-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.joaf-age-header h2 {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.8rem;
}

.joaf-age-icon {
  font-size: 2rem;
}

/* Текст */
.joaf-age-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.4;
}

/* Кнопки */
.joaf-age-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.mt5 {
  margin-top: 8%;
}
.joaf-btn-primary {
  background-color: #FFD700;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.joaf-btn-primary:hover {
  background-color: #FFC107;
}

.joaf-btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.joaf-btn-outline:hover {
  background-color: rgba(255,215,0,0.2);
}
/* Responsive */
@media(max-width:1024px){
  
  
  .joaf-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .joaf-footer-lead {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .joaf-footer-column ul li {
    justify-content: center;
  }
  .joaf-contact-info ul li {
    text-align: left;
  }
  .joaf-contact-grid {
    grid-template-columns: 1fr;
  }
  .joaf-contact-image {
    max-width: 100%;
  }
  .joaf-responsible-grid {
    grid-template-columns: 1fr;
  }
  .joaf-step-final {
    grid-column: 1;
  }
  .joaf-offer-inner-portugal { flex-direction: column; gap: 25px; }
  .joaf-offer-left-portugal, .joaf-offer-right-portugal { flex-direction: column; justify-content: center; }
  .joaf-hero-flex {flex-direction: column; align-items: flex-start; gap: 40px;}
  .joaf-hero-right {justify-content: flex-start; width:100%;}
  
  .joaf-burger-mobile {
    display: flex;
  }
  .joaf-nav-section {
    top: 100px; /* ниже хедера */
    left: 0;
    width: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    max-height: 0; /* скрыто */
    transition: max-height 0.5s ease;
    z-index: 9999 !important;
  }
  
  .joaf-nav-section.joaf-open {
    max-height: 100vh;
  }
  
  .joaf-nav-section ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .joaf-nav-section ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 1.1rem;
  }
  .joaf-buttons-section {
    display: none;
  }
  .joaf-nav ul{gap:15px;}}
@media(max-width:768px){.joaf-burger{display:flex;}.joaf-nav ul{display:none;}}
@media(max-width:480px){
  .joaf-hero-features {
    margin-bottom: 20px;
  }
  .joaf-hero-title{font-size:2rem; margin-top: 100px;}}
