/*
Theme Name: Mediagital Glassmorphism
Theme URI: https://mediagital.de
Author: Mediagital
Author URI: https://mediagital.de
Description: Modernes Glassmorphism WordPress Theme für Mediagital — mit WPBakery Page Builder Unterstützung, Contact Form 7 Integration und animierten Scroll-Effekten.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mediagital
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-light: #ff6b81;
  --blue: #0f3460;
  --blue-light: #16213e;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-hover: rgba(255, 255, 255, 0.14);
  --text: #f0f0f0;
  --text-muted: rgba(240, 240, 240, 0.6);
  --radius: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   ANIMATED BACKGROUND ORBS
   ============================================ */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.bg-orbs .orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-orbs .orb:nth-child(2) {
  width: 500px;
  height: 500px;
  background: var(--blue);
  bottom: -15%;
  right: -10%;
  animation-delay: -7s;
}

.bg-orbs .orb:nth-child(3) {
  width: 400px;
  height: 400px;
  background: #533483;
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
  100% { transform: translate(40px, 30px) scale(1.05); }
}

/* ============================================
   GLASS CARD COMPONENT
   ============================================ */
.glass {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* WPBakery editor: disable animations in backend */
.compose-mode .reveal,
.compose-mode .reveal-left,
.compose-mode .reveal-right {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

/* WordPress Menu Styling */
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CTA Button in Menu */
.nav-menu .menu-item-cta a {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.nav-menu .menu-item-cta a::after {
  display: none;
}

.nav-menu .menu-item-cta a:hover {
  background: var(--accent-light);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
  color: #fff;
}

/* Sub Menus */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.8rem 0;
  min-width: 200px;
  box-shadow: var(--shadow);
  list-style: none;
}

.nav-menu li:hover > .sub-menu {
  display: block;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--text);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid rgba(233, 69, 96, 0.3);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-section h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #ff6b81, #ffa502);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================
   SECTIONS (General)
   ============================================ */
.mg-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transition: height 0.5s ease;
  border-radius: 0 0 4px 0;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(15, 52, 96, 0.3));
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(233, 69, 96, 0.15);
}

/* ============================================
   FEATURE SPLIT LAYOUT
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.feature-visual .glass {
  padding: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--text);
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   CAMERA FEATURES
   ============================================ */
.camera-section {
  background: linear-gradient(180deg, transparent, rgba(15, 52, 96, 0.15), transparent);
}

.camera-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.camera-feat {
  padding: 2rem;
  text-align: center;
}

.camera-feat .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.camera-feat h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.camera-feat p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   3D TOURS
   ============================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.tour-card {
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.tour-card .tour-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.03);
}

.tour-card .tour-img::after {
  content: '\25B6  3D Tour starten';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tour-card:hover .tour-img::after {
  opacity: 1;
}

.tour-body {
  padding: 1.5rem 2rem 2rem;
}

.tour-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.tour-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   MARKETING GALLERY
   ============================================ */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.marketing-grid .item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.marketing-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.marketing-grid .item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.marketing-grid .item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 46, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.marketing-grid .item:hover::after {
  opacity: 1;
}

/* ============================================
   LOGO SLIDER
   ============================================ */
.logos-section {
  padding: 4rem 0;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: slide 25s linear infinite;
  width: max-content;
}

.logos-track img {
  height: 50px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.logos-track img:hover {
  opacity: 0.9;
  filter: grayscale(0) brightness(1);
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT / STATS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* When stat cards are inside vc_column_inner (WPBakery grid), fill the height */
.vc_column_inner .stat-card {
  margin-bottom: 0.75rem;
}

/* Spacing between WPBakery inner columns that contain stat cards */
.wpb_wrapper .stat-card:last-child {
  margin-bottom: 0;
}

.stat-card .number {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #ffa502);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-break: break-word;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ============================================
   CONTACT FORM 7 STYLING
   ============================================ */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(15, 52, 96, 0.1));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--text);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(233, 69, 96, 0.12);
  border: 1px solid rgba(233, 69, 96, 0.2);
  flex-shrink: 0;
}

.contact-detail span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Contact Form 7 Custom Styles */
.contact-form-wrap {
  padding: 2.5rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 120px;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
  margin-top: 0.5rem;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.2rem;
}

.wpcf7-response-output {
  border-radius: 12px !important;
  border-color: var(--glass-border) !important;
  color: var(--text) !important;
  background: var(--glass) !important;
  padding: 1rem !important;
  margin-top: 1rem !important;
}

.wpcf7 label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  text-align: center;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

/* Widget Area in Footer */
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-widgets .widget {
  padding: 1.5rem;
}

.footer-widgets .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-widgets .widget ul {
  list-style: none;
}

.footer-widgets .widget li {
  margin-bottom: 0.5rem;
}

.footer-widgets .widget a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-widgets .widget a:hover {
  color: var(--accent-light);
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.sidebar .widget {
  margin-bottom: 2rem;
  padding: 2rem;
}

.sidebar .widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

/* ============================================
   WPBAKERY OVERRIDES
   ============================================ */
.wpb_wrapper {
  position: relative;
  z-index: 1;
}

.vc_row {
  position: relative;
  z-index: 1;
}

.wpb_content_element {
  margin-bottom: 0;
}

/* WPBakery Row Glass Effect */
.vc_row.mg-glass-row > .vc_column_container > .vc_column-inner {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

/* WPBakery Text & Typography */
.vc_row h1, .vc_row h2, .vc_row h3, .vc_row h4 {
  color: var(--text);
}

.vc_row p {
  color: var(--text-muted);
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto 1.5rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
}

.sticky, .bypostauthor {}
.gallery-caption {}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .feature-split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .camera-features {
    grid-template-columns: 1fr;
  }

  .marketing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wpcf7 .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .mg-section {
    padding: 4rem 1.2rem;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
  }
}
