/* ============================================
   DEUTSCHE WOCHE XXVIII - MODERN REDESIGN 2026
   ============================================ */

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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #ffd302;
  --accent-light: #ffe44d;
  --accent-dark: #e6be00;
  --gold: #f4a261;
  --white: #ffffff;
  --dark: #1F1D0D;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   FLOATING GLASSMORPHISM NAVBAR
   ============================================ */
.navbar-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1200px;
  z-index: 9999;
  padding: 14px 32px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-floating.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  top: 12px;
}

.navbar-floating .nav-logo img {
  height: 38px;
  transition: all 0.3s var(--transition-smooth);
}

.navbar-floating .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-floating .nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.navbar-floating.scrolled .nav-links a {
  color: var(--gray-800);
}

.navbar-floating .nav-links a:hover {
  background: rgba(31, 29, 13, 0.08);
  color: var(--dark);
}

.navbar-floating.scrolled .nav-links a:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.navbar-floating .nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 211, 2, 0.3);
}

.navbar-floating .nav-cta:hover {
  background: var(--accent-light) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 211, 2, 0.4);
}

.navbar-floating .mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}

.navbar-floating.scrolled .mobile-toggle {
  color: var(--gray-800);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .navbar-floating {
    width: calc(100% - 32px);
    padding: 12px 20px;
    border-radius: 20px;
  }

  .navbar-floating .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .navbar-floating .nav-links.active {
    display: flex;
  }

  .navbar-floating .nav-links a {
    color: var(--gray-800);
    padding: 12px 20px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
  }

  .navbar-floating .nav-links a:hover {
    background: var(--gray-100);
    color: var(--accent);
  }

  .navbar-floating .mobile-toggle {
    display: block;
  }
}

/* ============================================
   HERO SECTION - ORIGINAL LAYOUT + MODERN TEXT
   ============================================ */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #ffd302;
  background-image: url('../images/shape/shape_img_6.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 152px 0 160px;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255, 211, 2, 0.2) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(20px, -20px) scale(1.1); opacity: 1; }
}

.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 29, 13, 0.08);
  border: 1px solid rgba(31, 29, 13, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--transition-smooth) both;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-badge span {
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.1s both;
}

.hero-title .title-accent {
  background: linear-gradient(135deg, var(--dark) 0%, #4a4200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(31, 29, 13, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
  font-weight: 400;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-theme {
  font-size: 15px;
  color: rgba(31, 29, 13, 0.6);
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.3s both;
}

.hero-theme strong {
  color: var(--dark);
  font-style: normal;
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(31, 29, 13, 0.06);
  border: 1px solid rgba(31, 29, 13, 0.12);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
}

.hero-tags .tag:hover {
  background: rgba(31, 29, 13, 0.12);
  border-color: rgba(31, 29, 13, 0.25);
  transform: translateY(-2px);
}

.hero-tags .tag i {
  font-size: 10px;
  color: var(--dark);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.5s both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(31, 29, 13, 0.2);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(31, 29, 13, 0.3);
  background: #2a2810;
  color: var(--accent);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(31, 29, 13, 0.06);
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.btn-secondary-hero:hover {
  background: var(--dark);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Images - Let style.css handle .banner_image_2 layout exactly as original */
.hero-images {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s var(--transition-smooth) 0.3s both;
}

.hero-float-card {
  position: absolute;
  background: rgba(31, 29, 13, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(31, 29, 13, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 15%;
  left: -5%;
  animation-delay: 1s;
}

.hero-float-card .card-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.hero-float-card .card-text {
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
}

.hero-float-card .card-sub {
  color: rgba(31, 29, 13, 0.6);
  font-size: 11px;
}

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

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

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

/* ============================================
   LOMBA SECTION - SWIPEABLE CARDS
   ============================================ */
.lomba-section {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header .section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}

.section-header .section-nav {
  display: flex;
  gap: 12px;
}

.section-header .nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  color: var(--gray-700);
  font-size: 16px;
}

.section-header .nav-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.05);
}

.lomba-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -16px;
  padding: 0 16px;
}

.lomba-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--transition-smooth);
  will-change: transform;
}

.lomba-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.lomba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.lomba-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.lomba-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.lomba-card:hover .card-image img {
  transform: scale(1.08);
}

.lomba-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}

.lomba-card .card-mode {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lomba-card .card-body {
  padding: 24px;
}

.lomba-card .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.lomba-card .card-desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lomba-card .card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.lomba-card .card-action:hover {
  gap: 12px;
  color: var(--accent-dark);
}

.lomba-card .card-action i {
  transition: transform 0.3s var(--transition-smooth);
}

.lomba-card .card-action:hover i {
  transform: translateX(4px);
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  margin-top: 40px;
}

.view-all-btn:hover {
  border-color: var(--accent);
  color: var(--dark);
  background: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .lomba-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 576px) {
  .lomba-card { flex: 0 0 calc(100% - 0px); }
}

/* ============================================
   TIMELINE SECTION - HORIZONTAL
   ============================================ */
.timeline-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.timeline-horizontal {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}

.timeline-horizontal::-webkit-scrollbar {
  display: none;
}

.timeline-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
  text-align: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 0 0 6px rgba(255, 211, 2, 0.15);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 211, 2, 0.2);
  transform: scale(1.2);
}

.timeline-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  white-space: nowrap;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}

/* ============================================
   GALLERY SECTION - FIT & INTERACTIVE
   ============================================ */
.gallery-section {
  padding: 120px 0;
  background: var(--gray-900);
  overflow: hidden;
}

.gallery-section .section-label,
.gallery-section .section-title {
  color: var(--white) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 8px;
  margin-top: 60px;
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  opacity: 0;
  transition: all 0.4s var(--transition-smooth);
}

.gallery-item:hover .overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Scroll reveal animations */
.gallery-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), 
              transform 0.8s var(--transition-smooth);
}

.gallery-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.2s; }
.gallery-item:nth-child(4) { transition-delay: 0.3s; }
.gallery-item:nth-child(5) { transition-delay: 0.4s; }
.gallery-item:nth-child(6) { transition-delay: 0.5s; }
.gallery-item:nth-child(7) { transition-delay: 0.6s; }
.gallery-item:nth-child(8) { transition-delay: 0.7s; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
}

/* ============================================
   FOOTER - MODERN 2026 STYLE
   ============================================ */
.footer-modern {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 300px;
}

.footer-brand .footer-logo img {
  height: 42px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter .newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  outline: none;
}

.footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .newsletter-form button {
  background: var(--accent);
  border: none;
  padding: 14px 24px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.footer-newsletter .newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   FAQ SECTION - MODERN
   ============================================ */
.faq-modern {
  padding: 120px 0;
  font-family: var(--font-body);
  background: var(--white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 211, 2, 0.1);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 211, 2, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  transition: all 0.3s var(--transition-smooth);
}

.faq-question:hover {
  color: var(--dark);
}

.faq-question i {
  font-size: 12px;
  color: var(--gray-500);
  transition: transform 0.3s var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.3s var(--transition-smooth);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ============================================
   UTILITY & ANIMATION CLASSES
   ============================================ */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Smooth reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition-smooth);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section spacing */
.section-space {
  padding: 120px 0;
}

/* Existing sections override */
.faq_section,
.contact_section,
.contact_form_section,
.intro_video_section {
  font-family: var(--font-body);
}

.faq_section .heading_text,
.contact_section .heading_text,
.contact_form_section .heading_text,
.intro_video_section .heading_text {
  font-family: var(--font-display);
}


/* ============================================
   FOOTER - DEVELOPER PROFILES
   ============================================ */
.footer-devs {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-devs .devs-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-devs .devs-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-devs .dev-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s var(--transition-smooth);
}

.footer-devs .dev-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 211, 2, 0.3);
  transform: translateY(-2px);
}

.footer-devs .dev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-devs .dev-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-devs .dev-info .dev-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-devs .dev-info .dev-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-devs .dev-socials {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.footer-devs .dev-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.footer-devs .dev-socials a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1);
}
