/*
Theme Name: BUILDNATION-THEME
Theme URI: https://buildnation.co.zw
Author: Alpha Musunko (BuildNation Construction)
Author URI: https://buildnation.co.zw
Description: Luxury modern WordPress theme for BuildNation Construction and the BuildNation App — professional construction services in Zimbabwe with smart builder tools, quotations, and referrals. Fully customizable via the Customizer.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buildnation-theme
Template: 
*/

:root {
  --background: 218 88% 5%;
  --foreground: 210 40% 98%;
  --card: 217 35% 12%;
  --card-foreground: 210 40% 98%;
  --popover: 217 35% 12%;
  --popover-foreground: 210 40% 98%;
  --primary: 49 91% 61%;
  --primary-foreground: 218 88% 5%;
  --primary-dark: 49 85% 48%;
  --primary-light: 49 95% 72%;
  --secondary: 217 35% 14%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217 25% 22%;
  --muted-foreground: 215 16% 72%;
  --accent: 49 40% 18%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 217 28% 22%;
  --input: 217 28% 22%;
  --ring: 49 91% 61%;
  --blue-gradient-start: 218 88% 6%;
  --blue-gradient-end: 217 35% 10%;
  --hero-gradient-start: 217 40% 14%;
  --hero-gradient-end: 218 88% 5%;
  --feature-card: 217 35% 11%;
  --feature-border: 49 35% 28%;
  --success: 142 76% 36%;
  --warning: 49 91% 61%;
  --info: 199 89% 48%;
  --radius: 0.75rem;
  --bn-btn-start: #F6E65C;
  --bn-btn-end: #57E26B;
  --bn-accent-yellow: #F5D742;
  --gradient-primary: linear-gradient(135deg, var(--bn-btn-start), var(--bn-btn-end));
  --gradient-hero: linear-gradient(135deg, hsl(var(--hero-gradient-start)), hsl(var(--hero-gradient-end)));
  --gradient-background: linear-gradient(180deg, hsl(var(--blue-gradient-start)), hsl(var(--blue-gradient-end)));
  --shadow-feature: 0 10px 40px -10px hsl(49 91% 61% / 0.35);
  --shadow-card: 0 4px 20px -4px hsl(218 88% 3% / 0.6);
  --shadow-button: 0 6px 22px -6px hsl(49 91% 61% / 0.45);
}

body { background-color: hsl(var(--background)); color: hsl(var(--foreground)); }
.bg-background { background-color: hsl(var(--background)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.text-card-foreground { color: hsl(var(--card-foreground)); }
.bg-feature-card { background-color: hsl(var(--feature-card)); }
.border-feature-border { border-color: hsl(var(--feature-border)); }
.bg-gradient-background { background-image: var(--gradient-background); }
.bg-gradient-hero {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 0% 0%, hsl(49 91% 61% / 0.22), transparent 55%),
                    radial-gradient(circle at 100% 0%, hsl(142 76% 36% / 0.15), transparent 55%),
                    radial-gradient(circle at 50% 100%, hsl(49 91% 61% / 0.12), transparent 55%),
                    var(--gradient-hero);
}
.bg-gradient-hero::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 0 0, hsl(49 91% 61% / 0.18), transparent 55%),
              radial-gradient(circle at 100% 100%, hsl(142 76% 36% / 0.12), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
  filter: blur(40px);
}
.bg-gradient-hero > * {
  position: relative;
  z-index: 1;
}
.bg-gradient-primary { background-image: var(--gradient-primary); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-success { color: hsl(var(--success)); }
.text-info { color: hsl(var(--info)); }
.text-warning { color: hsl(var(--warning)); }
.shadow-feature { box-shadow: var(--shadow-feature); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-button { box-shadow: var(--shadow-button); }
.glass-card {
  background: linear-gradient(135deg, hsl(var(--card) / 0.7), hsl(var(--card) / 0.3));
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--feature-border) / 0.5);
  box-shadow: 0 24px 80px -32px hsl(var(--primary) / 0.75);
  backdrop-filter: blur(18px);
}
.glass-card-soft {
  background: linear-gradient(135deg, hsl(var(--card) / 0.8), hsl(var(--card) / 0.4));
  border-radius: 1rem;
  border: 1px solid hsl(var(--feature-border) / 0.4);
  box-shadow: 0 18px 60px -32px hsl(217 91% 5% / 0.8);
  backdrop-filter: blur(14px);
}
.bg-accent { background-color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.btn-base { 
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.5rem; font-weight: 600; transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.btn-primary {
  background-image: var(--gradient-primary);
  color: #010919;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  box-shadow: var(--shadow-button);
  font-weight: 700;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px -8px hsl(49 91% 61% / 0.55);
}
.btn-secondary { border: 1px solid hsl(var(--feature-border)); background-color: hsl(var(--feature-card)); color: hsl(var(--foreground)); }
.btn-ghost { background: transparent; color: hsl(var(--foreground)); }
.icon-4 { width: 1rem; height: 1rem; }
.icon-5 { width: 1.25rem; height: 1.25rem; }
.max-w-7xl { max-width: 80rem; }
.transition-smooth { transition: var(--transition-smooth, all .3s cubic-bezier(.4,0,.2,1)); }

/* Motion approximations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease-out forwards; }

/* Luxury scroll reveal — pronounced slide up */
[data-aos] {
  opacity: 0;
  transform: translateY(56px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-aos].bn-aos-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
[data-aos][data-aos="fade-right"] { transform: translateX(-40px) translateY(24px); }
[data-aos][data-aos="fade-left"] { transform: translateX(40px) translateY(24px); }
[data-aos][data-aos="fade-right"].bn-aos-in,
[data-aos][data-aos="fade-left"].bn-aos-in {
  transform: translateX(0) translateY(0) scale(1);
}

/* Hover helpers */
.hover\:scale-105:hover { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* Feature Request Container - Reduced Size */
.feature-request-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.feature-request-container h2 {
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  text-align: center;
}

.feature-request-form .form-group {
  margin-bottom: 1rem;
}

.feature-request-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
  font-weight: 500;
}

.feature-request-form input,
.feature-request-form textarea,
.feature-request-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background-color: hsl(var(--input));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.feature-request-form input:focus,
.feature-request-form textarea:focus,
.feature-request-form select:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3, #004085);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* SharpZinto Internet Manager - Comments Container */
.sharpzinto-wifi-manager {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.comments-section {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.comments-title {
  color: #000000 !important;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.comments-subtitle {
  color: #000000 !important;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.comments-closed {
  color: #666;
  text-align: center;
  font-style: italic;
  padding: 2rem;
}

.comments-section h3 {
  color: #333;
  margin-bottom: 1rem;
}

.comments-section .comment-form {
  background-color: #ffffff;
}

.comments-section .comment-form textarea {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
}

.comments-section .comment-form input[type="text"],
.comments-section .comment-form input[type="email"],
.comments-section .comment-form input[type="url"] {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
}

.comments-section .comment-form input[type="submit"] {
  background-color: hsl(var(--primary));
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
}

.comments-section .comment-form input[type="submit"]:hover {
  background-color: hsl(var(--primary-dark));
}

.comments-section .comment-list {
  margin-top: 2rem;
}

.comments-section .comment {
  background-color: #f9f9f9;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  border-left: 3px solid hsl(var(--primary));
}

.comments-section .comment-author {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.comments-section .comment-date {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.comments-section .comment-content {
  color: #333;
  line-height: 1.6;
}

/* WiFi Comment Form Styling */
.wifi-comment-form {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: var(--radius);
  border: 1px solid #e9ecef;
}

.wifi-comment-form .form-group {
  margin-bottom: 1.5rem;
}

.wifi-comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.wifi-comment-form input,
.wifi-comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #333;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wifi-comment-form input:focus,
.wifi-comment-form textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.wifi-comment-form .submit-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.wifi-comment-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3, #004085);
}

.wifi-comments-list {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e9ecef;
}

/* Loading Screen Styles */
.streamorelinks-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--card)));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  margin: 0;
  padding: 0;
}

.streamorelinks-loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: loadingFadeIn 1s ease-out;
  position: relative;
}

.loading-logo-container {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.loading-logo {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-text-container {
  position: relative;
  z-index: 2;
  margin: 0 0 2rem 0;
}

.loading-business-name {
  font-size: 35px;
  font-weight: bold;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  text-align: center;
  min-height: 1.2em;
}

.typing-text {
  color: hsl(var(--primary));
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
}

.typing-cursor {
  color: hsl(var(--primary));
  font-weight: 100;
  animation: blink 1s infinite;
  margin-left: 2px;
}

/* AI Typing Animation */
.typing-text .word {
  display: inline-block;
  margin-right: 0.5em;
}

.typing-text .word-1 {
  color: hsl(var(--primary));
}

.typing-text .word-2 {
  color: #fbbf24; /* Yellow color for "Mobiles" */
}

.typing-text .word-3 {
  color: hsl(var(--primary-dark));
}

.typing-text .word-4 {
  color: #a855f7; /* Purple light color for "Technology" */
}

/* Progress Bar Styles */
.loading-progress-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.loading-progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(var(--primary)), #fbbf24, #a855f7);
  border-radius: 2px;
  width: 0%;
  animation: progressFill 2.5s ease-in-out forwards;
}

.loading-progress-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}

/* Animations */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@keyframes wordColorChange {
  0%, 20% {
    opacity: 1;
    transform: scale(1);
  }
  25%, 35% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  40%, 100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Loading screen responsive design */
@media (max-width: 768px) {
  .loading-logo {
    width: 60px;
    height: 60px;
  }
  
  .loading-business-name {
    font-size: 28px !important;
    text-align: center;
  }
  
  .typing-text {
    font-size: 28px !important;
  }
  
  .loading-progress-container {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .loading-logo {
    width: 50px;
    height: 50px;
  }
  
  .loading-business-name {
    font-size: 24px !important;
  }
  
  .typing-text {
    font-size: 24px !important;
  }
  
  .loading-progress-container {
    max-width: 200px;
  }
  
  .loading-progress-text {
    font-size: 0.75rem;
  }
}

/* Ensure loading screen is always perfectly centered */
.streamorelinks-loading-screen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.loading-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  max-width: 90vw;
  position: relative;
}

/* Ensure loading screen is always on top */
.streamorelinks-loading-screen {
  z-index: 99999 !important;
}

/* Mobile Menu Drawer Styles */
#mobile-menu-toggle {
  z-index: 1001;
  position: relative;
}

#mobile-menu-overlay {
  z-index: 40;
  backdrop-filter: blur(2px);
}

#mobile-menu-drawer {
  z-index: 50;
  border-radius: 0 0 0 1rem;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Items */
.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
}

.mobile-menu-item:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  transform: translateX(4px);
  border-color: hsl(var(--feature-border));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-item:active {
  transform: translateX(2px) scale(0.98);
}

.mobile-menu-item i {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}

.mobile-menu-item:hover i {
  opacity: 1;
}

.mobile-menu-item span {
  flex: 1;
  font-size: 0.95rem;
}

/* Drawer Header */
#mobile-menu-drawer .flex.items-center.justify-between {
  background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--muted)));
  border-bottom: 1px solid hsl(var(--feature-border));
}

#mobile-menu-close {
  transition: all 0.2s ease-in-out;
}

#mobile-menu-close:hover {
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
  transform: scale(1.05);
}

/* Drawer Content */
#mobile-menu-drawer nav {
  padding: 1rem;
}

#mobile-menu-drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-menu-drawer nav li {
  margin: 0;
  padding: 0;
}

/* Drawer Footer */
#mobile-menu-drawer .border-t {
  background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--card)));
  border-top: 1px solid hsl(var(--feature-border));
}

/* Animation Enhancements */
#mobile-menu-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu-overlay {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Mobile Menu Responsive Adjustments */
@media (max-width: 480px) {
  #mobile-menu-drawer {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  
  .mobile-menu-item {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .mobile-menu-item i {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Focus States for Accessibility */
.mobile-menu-item:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

#mobile-menu-toggle:focus,
#mobile-menu-close:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Smooth scrolling for drawer content */
#mobile-menu-drawer .flex-1 {
  scroll-behavior: smooth;
}

/* Custom scrollbar for drawer */
#mobile-menu-drawer .flex-1::-webkit-scrollbar {
  width: 4px;
}

#mobile-menu-drawer .flex-1::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

#mobile-menu-drawer .flex-1::-webkit-scrollbar-thumb {
  background: hsl(var(--muted-foreground));
  border-radius: 2px;
}

#mobile-menu-drawer .flex-1::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--foreground));
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Tablet styles */
  .max-w-7xl {
    max-width: 90%;
  }
  
  .px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  /* Mobile styles */
  .max-w-7xl {
    max-width: 95%;
  }
  
  .px-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Typography adjustments */
  .text-xl {
    font-size: 1.125rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
  
  /* Button adjustments */
  .btn-base {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  /* Grid adjustments */
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* Flex adjustments */
  .flex-col {
    flex-direction: column;
  }
  
  .items-center {
    align-items: flex-start;
  }
  
  .text-center {
    text-align: left;
  }
  
  /* Spacing adjustments */
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
  
  .space-y-8 > * + * {
    margin-top: 2rem;
  }
  
  .space-y-12 > * + * {
    margin-top: 3rem;
  }
  
  /* Padding adjustments */
  .py-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .py-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .py-24 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  /* Margin adjustments */
  .my-12 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .my-16 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  
  .my-20 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  
  /* Feature cards mobile */
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Comments dialog mobile */
  .streamorelinks-comment-dialog-content {
    width: 95%;
    margin: 20px;
  }
  
  .streamorelinks-comment-dialog-header,
  .streamorelinks-comment-dialog-body {
    padding: 16px;
  }
  
  .streamorelinks-comments-form-container {
    padding: 24px;
  }
  
  .streamorelinks-comments-header h1 {
    font-size: 24px;
  }
  
  /* WiFi comments mobile */
  .wifi-comment-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .wifi-comments-list {
    padding: 1rem;
  }
  
  /* Feature request mobile */
  .feature-request-container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* SharpZinto WiFi Manager mobile */
  .sharpzinto-wifi-manager {
    padding: 1rem;
  }
  
  .comments-section {
    padding: 1.5rem;
  }
  
  .comments-title {
    font-size: 1.5rem;
  }
  
  .comments-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Small mobile styles */
  .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  /* Typography for small screens */
  .text-lg {
    font-size: 1rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
  
  .text-2xl {
    font-size: 1.25rem;
  }
  
  .text-3xl {
    font-size: 1.5rem;
  }
  
  .text-4xl {
    font-size: 1.75rem;
  }
  
  .text-5xl {
    font-size: 2rem;
  }
  
  /* Button adjustments for small screens */
  .btn-base {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
  
  /* Hero section small mobile */
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  /* Form adjustments */
  .form-group input,
  .form-group textarea {
    padding: 0.625rem;
    font-size: 0.875rem;
  }
  
  /* Comments mobile small */
  .streamorelinks-comment-dialog-content {
    width: 98%;
    margin: 10px;
  }
  
  .streamorelinks-comment-dialog-header,
  .streamorelinks-comment-dialog-body {
    padding: 12px;
  }
  
  .streamorelinks-comments-form-container {
    padding: 16px;
  }
  
  .streamorelinks-comments-header h1 {
    font-size: 20px;
  }
  
  /* WiFi comments small mobile */
  .wifi-comment-form {
    padding: 1rem;
  }
  
  .wifi-comments-list {
    padding: 0.75rem;
  }
  
  /* Feature request small mobile */
  .feature-request-container {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  /* SharpZinto WiFi Manager small mobile */
  .sharpzinto-wifi-manager {
    padding: 0.75rem;
  }
  
  .comments-section {
    padding: 1rem;
  }
  
  .comments-title {
    font-size: 1.25rem;
  }
  
  .comments-subtitle {
    font-size: 0.875rem;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 1.5rem 0;
  }
  
  .py-12 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-4, .icon-5 {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* BuildNation glow cards (match app hero lighting) */
.bn-glow-card {
  box-shadow: var(--shadow-card), 0 0 0 1px hsl(49 91% 61% / 0.12), 0 0 32px -8px hsl(49 91% 61% / 0.25);
}
/* 3D Cover Flow carousel — height via --bn-coverflow-height on .bn-coverflow-wrap */
.bn-page-slider-section {
  overflow: visible;
}
.bn-coverflow-wrap {
  padding: 0 0 2rem;
  box-sizing: border-box;
  --bn-coverflow-inner-pad: 1.3rem;
}
.bn-coverflow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem 2.5rem;
}
.bn-coverflow-stage {
  position: relative;
  height: var(--bn-coverflow-height, 420px);
  perspective: 1400px;
  perspective-origin: 50% 42%;
  overflow: visible;
}
.bn-coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.bn-coverflow-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 420px);
  max-width: 92%;
  height: var(--bn-coverflow-height, 420px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease;
  will-change: transform, opacity, filter;
}
.bn-coverflow-slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: var(--bn-coverflow-height, 420px);
  padding: 0.65rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(49 91% 61% / 0.35);
  background: hsl(var(--card));
  box-shadow: 0 20px 50px -20px hsl(218 88% 3% / 0.85);
  transition: box-shadow 0.65s ease, border-color 0.65s ease;
}
.bn-coverflow-slide.is-center .bn-coverflow-slide-inner {
  border-color: hsl(49 91% 61% / 0.75);
  box-shadow:
    0 28px 70px -18px hsl(49 91% 61% / 0.45),
    0 0 0 1px hsl(49 91% 61% / 0.25),
    0 0 48px -8px hsl(49 91% 61% / 0.35);
}
/* First slide visible before / without full 3D init */
.bn-coverflow-slide.is-center,
.bn-coverflow:not([data-bn-coverflow-ready]) .bn-coverflow-slide:first-child {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20;
}
/* Fit full screenshot inside slider height — no center crop */
.bn-coverflow img {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: calc(var(--bn-coverflow-height, 420px) - var(--bn-coverflow-inner-pad, 1.3rem));
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.bn-coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid hsl(var(--feature-border));
  background: hsl(var(--card) / 0.92);
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.bn-coverflow-nav:hover { transform: translateY(-50%) scale(1.06); background: hsl(var(--accent)); }
.bn-coverflow-prev { left: 0.25rem; }
.bn-coverflow-next { right: 0.25rem; }
.bn-coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.bn-coverflow-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: hsl(var(--muted));
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.bn-coverflow-dots button.active {
  background: var(--bn-accent-yellow);
  width: 26px;
}
@media (max-width: 640px) {
  .bn-coverflow { padding: 0 0.5rem 2rem; }
  .bn-coverflow-nav { width: 38px; height: 38px; }
  .bn-coverflow-slide { width: min(88vw, 340px); }
}
/* Download page — APK + Google Play cards */
.bn-download-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .bn-download-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.bn-download-option-card { min-height: 220px; }
.bn-play-badge-link { display: inline-block; line-height: 0; }
.bn-play-badge-img {
  height: 64px;
  width: auto;
  max-width: min(100%, 240px);
  object-fit: contain;
}
@media (min-width: 640px) {
  .bn-play-badge-img { height: 72px; }
}
.bn-footer-phone-btn {
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid hsl(var(--primary));
  border-radius: 9999px;
  color: hsl(var(--foreground));
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.bn-footer-phone-btn:hover {
  color: hsl(var(--primary-foreground));
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}
/* Header menu list reset when using wp_nav_menu */
nav .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
nav .menu li { margin: 0; padding: 0; list-style: none; }
.bn-header-download-cta a { white-space: nowrap; }

/* Pricing — tall narrow cards + cinematic 3D slider */
.bn-pricing-page { overflow-x: hidden; }
.bn-pricing-slider-wrap {
  margin: 0 auto 2rem;
  max-width: 1100px;
  overflow: visible;
  --bn-pricing-card-width: 272px;
  --bn-pricing-card-height: 600px;
  --bn-pricing-spread: 248px;
}
.bn-coverflow--pricing {
  max-width: 100%;
  padding: 0 3.25rem 2rem;
  overflow: visible;
}
.bn-coverflow--pricing .bn-coverflow-stage,
.bn-pricing-stage {
  perspective: 1800px;
  perspective-origin: 50% 48%;
  min-height: calc(var(--bn-pricing-card-height, 600px) + 4rem);
  overflow: visible;
}
.bn-coverflow--pricing .bn-coverflow-track {
  transform-style: preserve-3d;
}
.bn-coverflow--pricing .bn-pricing-plan-slide {
  width: min(78vw, var(--bn-pricing-card-width, 272px));
  height: var(--bn-pricing-card-height, 600px);
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease;
}
.bn-coverflow--pricing .bn-pricing-plan-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.bn-pricing-plan-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--bn-pricing-card-height, 600px);
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(168deg, rgba(36, 48, 68, 0.78) 0%, rgba(14, 20, 34, 0.94) 48%, rgba(6, 10, 18, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.5s ease, border-color 0.5s ease, transform 0.35s ease;
  overflow: visible;
}
.bn-pricing-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5rem;
  border-radius: 1.25rem 1.25rem 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
}
.bn-pricing-plan-slide.is-center .bn-pricing-plan-card {
  border-color: rgba(183, 255, 60, 0.55);
  box-shadow:
    0 0 0 1px rgba(183, 255, 60, 0.28),
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(183, 255, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.bn-pricing-plan-slide.is-center .bn-pricing-plan-card::before {
  background: linear-gradient(180deg, rgba(183, 255, 60, 0.14) 0%, transparent 100%);
}
.bn-pricing-plan-slide.is-side .bn-pricing-plan-card {
  opacity: 0.98;
}
/* BEST VALUE — matches app subscribe_badge_best_value (pill, top-right overlap) */
.bn-pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  transform: translate(22%, -38%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
.bn-pricing-badge--best-value {
  color: #B7FF3C;
  background: rgba(16, 16, 24, 0.82);
  border: 2px solid #B7FF3C;
  box-shadow:
    0 0 0 1px rgba(183, 255, 60, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(183, 255, 60, 0.25);
}
.bn-pricing-badge--popular {
  color: var(--bn-badge-color, #38bdf8);
  background: rgba(16, 16, 24, 0.82);
  border: 2px solid var(--bn-badge-color, #38bdf8);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.bn-pricing-card-head {
  text-align: center;
  padding: 0.35rem 0.5rem 0.15rem;
  flex-shrink: 0;
}
.bn-pricing-plan-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #f1f5f9;
}
.bn-pricing-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.15rem;
  line-height: 1;
  margin: 0.35rem 0 0.65rem;
  flex-shrink: 0;
}
.bn-pricing-amount-value {
  font-size: 2.35rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
}
.bn-pricing-amount-period {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.bn-pricing-amount-period::before {
  content: "/";
  margin-right: 0.05rem;
  opacity: 0.85;
}
.bn-pricing-price-block--hero .bn-pricing-amount-value {
  font-size: 3.4rem;
  color: #B7FF3C;
  text-shadow: 0 0 28px rgba(183, 255, 60, 0.35);
}
.bn-pricing-price-block--hero .bn-pricing-amount-period {
  font-size: 1.15rem;
  color: #e2e8f0;
}
.bn-pricing-divider {
  border: none;
  height: 1px;
  margin: 0 0 0.65rem;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
  flex-shrink: 0;
}
.bn-pricing-divider--foot {
  margin: auto 0 0.75rem;
}
.bn-pricing-benefits {
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
}
.bn-pricing-benefits li::before {
  content: "✓ ";
  color: #B7FF3C;
  font-weight: 700;
}
.bn-pricing-card-foot {
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.bn-pricing-cta-btn {
  width: 100%;
  min-height: 48px;
  font-size: 0.9375rem;
}
.bn-pricing-plan-slide.is-side .bn-pricing-cta-btn.btn-secondary {
  border-color: rgba(148, 163, 184, 0.45);
}
.bn-pricing-nav {
  z-index: 60;
  width: 48px;
  height: 48px;
}
.bn-pricing-credits-section { padding-bottom: 3rem; }
.bn-pricing-credits-master {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.88) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.bn-pricing-credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.bn-pricing-credit-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.65);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bn-pricing-credit-mini:hover {
  border-color: rgba(183, 255, 60, 0.35);
  box-shadow: 0 0 20px rgba(183, 255, 60, 0.08);
}
.bn-pricing-credit-mini-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.bn-pricing-credit-mini-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #B7FF3C;
  margin: 0;
}
.bn-pricing-credit-mini-meta {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}
.bn-pricing-credit-mini-desc {
  font-size: 0.82rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  flex: 1;
}
.bn-pricing-credit-mini-btn {
  margin-top: auto;
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(183, 255, 60, 0.4);
  border-radius: 0.5rem;
  background: transparent;
  color: #B7FF3C;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.bn-pricing-credit-mini-btn:hover {
  background: rgba(183, 255, 60, 0.12);
}
@media (max-width: 640px) {
  .bn-coverflow--pricing {
    padding: 0 0.15rem 1.75rem;
  }
  .bn-coverflow--pricing .bn-pricing-plan-slide {
    width: min(82vw, 260px);
  }
  .bn-pricing-price-block--hero .bn-pricing-amount-value { font-size: 2.85rem; }
  .bn-pricing-nav { width: 40px; height: 40px; }
  .bn-pricing-credits-grid { grid-template-columns: 1fr; }
}
.bn-contact-form-wrap .bn-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--feature-border, #334155);
  background: rgba(0,0,0,0.2);
  color: inherit;
}
.bn-tutorial-play { margin-left: 0; }

.bn-img-h-gallery { height: var(--bn-home-gallery-h, 208px); object-fit: cover; width: 100%; }
.bn-img-h-card { height: var(--bn-card-img-h, 176px); object-fit: cover; width: 100%; }

.bn-home-hero-wrap,
.bn-home-what-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.bn-home-hero-copy {
  width: 100%;
  max-width: 100%;
  text-align: left;
}
.bn-home-what-copy {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bn-home-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bn-home-gallery-centered {
  text-align: center;
}
.bn-home-gallery-centered .bn-home-gallery-preview {
  justify-items: center;
}
.bn-youtube-embed,
.bn-video-player-stage {
  position: relative;
  width: 100%;
  height: var(--bn-video-embed-h, 360px);
  min-height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
}
.bn-video-player {
  width: 100%;
}
.bn-video-native,
.bn-video-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.bn-video-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.bn-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--feature-border, rgba(255, 255, 255, 0.12));
  background: rgba(0, 0, 0, 0.35);
  color: var(--foreground, #fff);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.bn-video-btn:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--primary, #22c55e);
  transform: translateY(-1px);
}
.bn-video-btn:focus-visible {
  outline: 2px solid var(--primary, #22c55e);
  outline-offset: 2px;
}
.bn-home-construction-videos .btn-secondary {
  min-width: 14rem;
}
.bn-home-hero-section .glass-card {
  width: 100%;
}
.bn-home-gallery-after-what {
  margin-top: 2.5rem;
  padding-top: 2rem;
}
.bn-youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bn-home-gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bn-home-gallery-thumb:hover { transform: scale(1.02); }
.bn-home-gallery-modal,
.bn-home-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.bn-home-gallery-modal.hidden,
.bn-home-gallery-lightbox.hidden { display: none !important; }
.bn-home-gallery-modal-backdrop,
.bn-home-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  border: 0;
  cursor: pointer;
}
.bn-home-gallery-modal-panel {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  margin: auto;
}
.bn-home-gallery-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.75rem;
  line-height: 1;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  z-index: 3;
}
.bn-home-gallery-modal-grid button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}
.bn-home-gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.bn-home-gallery-lightbox-scroll {
  position: relative;
  z-index: 2;
  max-width: 96vw;
  max-height: 88vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem 1rem 1rem;
}
.bn-home-gallery-lightbox-img {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
  transform-origin: center center;
  transition: transform 0.15s ease;
  border-radius: 0.5rem;
  margin: 0 auto;
}
.bn-home-gallery-lightbox-zoom {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.72);
  padding: 0.35rem 0.5rem;
  border-radius: 9999px;
}
.bn-home-gallery-lightbox-zoom button {
  min-width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.bn-home-gallery-lightbox-zoom .bn-gallery-zoom-reset {
  min-width: 4.5rem;
  font-size: 0.8rem;
}

/* Print styles */
@media print {
  .mobile-menu,
  #mobile-menu-toggle,
  .streamorelinks-comment-dialog,
  .wifi-floating-comment-btn,
  .wifi-comment-modal {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .bg-gradient-background,
  .bg-gradient-hero,
  .bg-card {
    background: white !important;
  }
  
  .text-foreground,
  .text-card-foreground {
    color: black !important;
  }
}
