/* === Reset & Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

/* === Advanced Page Loader === */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  pointer-events: none;
}

/* Faster skip transition */
.page-loader.skip-loaded {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: all 0.3s ease!important;
  pointer-events: none;
}

/* Skip Loader Button (moved from inline) */
.skip-loader {
  position: fixed; /* ensure always visible in viewport */
  bottom: 20px;
  right: 20px;
  background: rgba(255,215,0,0.15);
  border: 1px solid #ffd700;
  color: #ffd700;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 10001; /* above loader content */
  pointer-events: auto;
}
.skip-loader:hover,
.skip-loader:focus {
  background: #ffd700;
  color: #111;
  box-shadow: 0 0 12px rgba(255,215,0,0.6);
  outline: none;
}
.skip-loader:active {
  transform: scale(0.95);
}

/* Fallback hide class if JS error */
.loader-force-hide {opacity:0!important;visibility:hidden!important;}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loader-logo {
  position: relative;
  margin-bottom: 2rem;
}

.loader-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffd700;
  animation: logoFloat 2s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.logo-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

.loader-text h2 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.loader-text p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.loader-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem auto;
  position: relative;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
  background-size: 200% 100%;
  border-radius: 10px;
  width: 0%;
  animation: progressFill 3s ease-in-out forwards, shimmer 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loader-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.loader-particles .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 3s;
}

.loader-particles .particle:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 0.5s;
  animation-duration: 4s;
}

.loader-particles .particle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 3.5s;
}

.loader-particles .particle:nth-child(4) {
  top: 40%;
  right: 40%;
  animation-delay: 1.5s;
  animation-duration: 3.2s;
}

.loader-particles .particle:nth-child(5) {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 4.2s;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes progressFill {
  0% { width: 0%; }
  25% { width: 30%; }
  50% { width: 60%; }
  75% { width: 85%; }
  100% { width: 100%; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes floatParticle {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }
  10% { opacity: 1; }
  50% { 
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  90% { opacity: 1; }
  100% { 
    transform: translateY(-60px) translateX(-10px) scale(0.8);
    opacity: 0;
  }
}

/* === Announcement Banner === */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 215, 0, 0.95);
  color: #000;
  padding: 0.6rem 1rem;
  text-align: center;
  z-index: 1500;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  font-size: 0.9rem;
}

.announcement-banner.hidden {
  transform: translateY(-100%);
}

.announcement-banner .close-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.announcement-banner .close-button:hover {
  background: rgba(0,0,0,0.1);
}

.announcement-banner .announcement-text {
  color: #000;
  margin: 0;
  padding: 0 2rem 0 0;
  font-size: 0.9rem;
}

body {
  background: #111;
  overflow-x: hidden;
  overflow-y: auto !important; /* Force enable vertical scrolling */
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  height: auto !important; /* Ensure body can expand */
}

/* === Advanced Scroll Animation Effects === */
.scroll-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}

.scroll-section:not(.visible) {
  opacity: 0;
  transform: translateY(100px) scale(0.95);
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Slide Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Fade Effects */
.fade-up {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Advanced Stagger Animation */
.stagger-animation .card {
  opacity: 0;
  transform: translateY(80px) rotateX(15deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.stagger-animation.visible .card {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.stagger-animation.visible .card:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.visible .card:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.visible .card:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.visible .card:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.visible .card:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.visible .card:nth-child(6) { transition-delay: 0.6s; }

/* Section Background Effects */
.section-bg-glow {
  position: relative;
  overflow: hidden;
}

.section-bg-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%);
  animation: rotate-glow 20s linear infinite;
  z-index: -1;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Parallax */
.parallax-bg {
  position: relative;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
  pointer-events: none; /* Allow interaction with elements above */
}

/* Enhanced Particle Overlay */
.particle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,215,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,215,0,0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
  animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* === Header === */
header,
.modern-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 1000;
  width: 100%;
  margin-top: 0; /* Remove default gap at top; add only when banner present */
  transition: margin-top 0.3s ease-in-out;
}

/* Modern Header Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #ffd700;
}

.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  white-space: nowrap;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 215, 0, 0.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #ffd700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

header.no-announcement {
  margin-top: 0;
}

/* If legacy announcement banner exists, add spacing dynamically */
.announcement-banner + header {
  margin-top: 3rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-left img {
  height: 50px;
  width: auto;
  max-width: 50px; /* Limit logo width */
  object-fit: contain;
}

/* Company name in header */
.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  white-space: nowrap;
}

.round-logo {
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border: 2px solid #ffd700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.round-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

/* Mobile-first navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a {
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.1);
}

.admin-login {
  margin-left: 0.5rem;
}

.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.admin-login:hover {
  background: rgba(255, 215, 0, 0.1);
}

.admin-login img {
  transition: 0.3s;
  filter: brightness(1) drop-shadow(0 0 5px #ffd700);
  cursor: pointer;
  width: auto;
  height: 24px;
}

.admin-login img:hover {
  transform: scale(1.1);
  filter: brightness(1.2) drop-shadow(0 0 10px #ffd700);
}

/* === Authentication Dropdown === */
.auth-dropdown {
  position: relative;
  margin-left: 0.5rem;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.auth-user:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.1);
}

.auth-user i {
  font-size: 1.2em;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  border: 1px solid #333;
  border-radius: 8px;
  z-index: 1100;
  overflow: hidden;
  margin-top: 0.5rem;
}

.dropdown-content a {
  color: #ffd700;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.login-link:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.1);
}

/* === Admin Access === */
.auth-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.admin-access {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.admin-access:hover {
  color: #000;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.admin-access i {
  font-size: 1.1em;
}

/* === Hero Section === */
.hero,
.hero-section-fancy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

/* Hero Section Fancy Specific Styles */
.hero-section-fancy {
  min-height: 80vh;
  padding: 4rem 2rem;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 50px;
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.hero-logo-container {
  position: relative;
  margin: 2rem 0;
}

.hero-main-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffd700;
  margin: 1rem 0;
  line-height: 1.2;
}

.title-line-1,
.title-line-2 {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  margin: 1rem 0;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ccc;
  max-width: 700px;
  margin: 2rem auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-btn.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #111;
}

.hero-btn.secondary {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 2px solid #ffd700;
}

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

.hero-contact-quick {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  font-size: 0.9rem;
}

.contact-item i {
  color: #ffd700;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo img {
  height: 120px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  transition: all 0.3s ease;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ffd700, 0 0 20px #fff;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.5;
}

.cta-button {
  padding: 1rem 2rem;
  background: #ffd700;
  color: #111;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  min-width: 150px;
}

.cta-button:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* === Portfolio Section === */
.portfolio-section {
  padding: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.portfolio-section .section-title {
  text-align: center;
  color: #ffd700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  border-color: #ffd700;
  filter: brightness(1.2);
}

.portfolio-details {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
}

.portfolio-details h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.portfolio-details p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === Enhanced Cards & Sections === */
.services-highlight {
  padding: 6rem 1rem;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.95), rgba(17,17,17,0.9)),
    radial-gradient(ellipse at center, rgba(255,215,0,0.03) 0%, transparent 70%);
  overflow: hidden;
}

.services-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255,215,0,0.02) 50%, 
    transparent 70%);
  animation: section-sweep 15s linear infinite;
  z-index: 0;
}

@keyframes section-sweep {
  0% { transform: translateX(-100%) rotate(-10deg); }
  100% { transform: translateX(100%) rotate(-10deg); }
}

.services-highlight h1 {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffd700;
  margin-bottom: 4rem;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 215, 0, 0.4),
    0 4px 8px rgba(0,0,0,0.5);
  position: relative;
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 10;
  animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0,0,0,0.5); }
  100% { text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 80px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(0,0,0,0.5); }
}

.services-highlight h1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255,215,0,0.1) 0%, transparent 70%);
  z-index: -1;
  animation: halo-pulse 4s ease-in-out infinite;
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.services-highlight h1::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,215,0,0.3), 
    #ffd700, 
    rgba(255,215,0,0.3), 
    transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
  animation: underline-glow 2s ease-in-out infinite alternate;
}

@keyframes underline-glow {
  0% { box-shadow: 0 0 20px rgba(255,215,0,0.6); }
  100% { box-shadow: 0 0 30px rgba(255,215,0,1); }
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
  padding: 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.7),
    0 5px 15px rgba(255,215,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  color: #fff;
}

/* Animated Border */
.card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255,215,0,0.3), 
    transparent, 
    rgba(255,215,0,0.1), 
    transparent);
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

@keyframes border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Shimmer Effect */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.2), 
    rgba(255,215,0,0.1), 
    rgba(255,255,255,0.2), 
    transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.card:hover::after {
  left: 100%;
}

/* Enhanced Hover Effects */
.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.8),
    0 15px 30px rgba(255,215,0,0.3),
    0 0 50px rgba(255,215,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border-color: rgba(255, 215, 0, 0.6);
}

.admin-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="email"],
.admin-form textarea,
.admin-form select,
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea,
#contactForm select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid #ffd700;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.admin-form input[type="text"]:focus,
.admin-form input[type="password"]:focus,
.admin-form input[type="email"]:focus,
.admin-form textarea:focus,
.admin-form select:focus,
#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm textarea:focus,
#contactForm select:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  background: rgba(30, 30, 30, 0.9);
}

/* Mobile-specific form improvements */
@media (hover: none) and (pointer: coarse) {
  .admin-form input,
  .admin-form textarea,
  .admin-form select,
  #contactForm input,
  #contactForm textarea,
  #contactForm select {
    /* Remove transform on focus for touch devices */
    transform: none;
  }
  
  .card:hover {
    /* Reduce hover effects on touch devices */
    transform: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  }
}

#contactForm {
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  border-radius: 15px;
}

#contactForm label {
  color: #ffd700;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

#contactForm textarea {
  min-height: 150px;
  resize: vertical;
}

#contactForm select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

#contactForm .cta-button {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 1rem;
  touch-action: manipulation;
}

.admin-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.admin-form select option {
  background: #111;
  color: #fff;
}

.admin-panel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.admin-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* Admin Panel Tabs */
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 5px;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-button.active,
.tab-button:hover {
  background: #ffd700;
  color: #111;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Team Management */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-edit-card {
  background: rgba(255, 215, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.team-member-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.photo-item {
  background: rgba(255, 215, 0, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.photo-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 1rem 0;
}

.photo-item input[type="file"] {
  margin: 1rem 0;
}

.cta-button.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.card img {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  max-width: 100%;
  filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
}

.card h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #ffd700;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card p {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.6;
  color: #e0e0e0;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transition: width 0.4s ease;
}

.card:hover::after {
  width: 80%;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ffd700, 0 10px 30px rgba(0,0,0,0.6);
}

.hover-glow:hover {
  box-shadow: 0 0 25px #ffd700;
}

/* === Enhanced Section Dividers === */
.section-divider {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,215,0,0.2) 20%, 
    #ffd700 50%, 
    rgba(255,215,0,0.2) 80%, 
    transparent 100%);
  margin: 8rem auto;
  max-width: 1000px;
  border-radius: 3px;
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ffd700 30%, rgba(255,215,0,0.3) 70%, transparent);
  border-radius: 50%;
  box-shadow: 
    0 0 30px rgba(255,215,0,0.8),
    0 0 60px rgba(255,215,0,0.4);
  animation: divider-pulse 3s ease-in-out infinite;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.6), 
    rgba(255,215,0,0.8), 
    rgba(255,255,255,0.6), 
    transparent);
  animation: divider-shine 4s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% { 
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 30px rgba(255,215,0,0.8), 0 0 60px rgba(255,215,0,0.4);
  }
  50% { 
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 40px rgba(255,215,0,1), 0 0 80px rgba(255,215,0,0.6);
  }
}

@keyframes divider-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* === Enhanced Team Section === */
.team-container {
  padding: 6rem 1rem;
  position: relative;
  background: 
    linear-gradient(225deg, rgba(17,17,17,0.95), rgba(0,0,0,0.9)),
    radial-gradient(circle at 70% 30%, rgba(255,215,0,0.03) 0%, transparent 70%);
  overflow: hidden;
}

.team-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(-45deg, 
    transparent 30%, 
    rgba(255,215,0,0.02) 50%, 
    transparent 70%);
  animation: section-sweep-reverse 18s linear infinite;
  z-index: 0;
}

@keyframes section-sweep-reverse {
  0% { transform: translateX(100%) rotate(10deg); }
  100% { transform: translateX(-100%) rotate(10deg); }
}

.team-container h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffd700;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 215, 0, 0.4),
    0 4px 8px rgba(0,0,0,0.5);
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  z-index: 10;
  animation: title-glow 3s ease-in-out infinite alternate;
}

.team-container h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255,215,0,0.1) 0%, transparent 70%);
  z-index: -1;
  animation: halo-pulse 4s ease-in-out infinite;
}

.team-container h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,215,0,0.3), 
    #ffd700, 
    rgba(255,215,0,0.3), 
    transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
  animation: underline-glow 2s ease-in-out infinite alternate;
}

/* === Enhanced Extra Section (Why Choose Us) === */
.extra-section {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.95), rgba(17,17,17,0.9)),
    radial-gradient(ellipse at center, rgba(255,215,0,0.05) 0%, transparent 70%);
  border-radius: 30px;
  border: 2px solid rgba(255,215,0,0.2);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.8),
    0 0 40px rgba(255,215,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}

.extra-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255,215,0,0.03) 60deg,
    transparent 120deg,
    rgba(255,215,0,0.02) 180deg,
    transparent 240deg,
    rgba(255,215,0,0.03) 300deg,
    transparent 360deg
  );
  animation: rotate-conic 20s linear infinite;
  z-index: 0;
}

@keyframes rotate-conic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.extra-section h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 3rem;
  color: #ffd700;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 215, 0, 0.4),
    0 4px 8px rgba(0,0,0,0.5);
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  z-index: 10;
  animation: title-glow 3s ease-in-out infinite alternate;
}

.extra-section h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255,215,0,0.1) 0%, transparent 70%);
  z-index: -1;
  animation: halo-pulse 4s ease-in-out infinite;
}

.extra-section h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,215,0,0.3), 
    #ffd700, 
    rgba(255,215,0,0.3), 
    transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
  animation: underline-glow 2s ease-in-out infinite alternate;
}

.extra-section p {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  line-height: 1.9;
  color: #f0f0f0;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  max-width: 800px;
  margin: 0 auto;
}

/* Enhanced Why Choose Us Section */
.why-choose-content {
  position: relative;
  z-index: 10;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  background: rgba(255, 215, 0, 0.05);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 6s ease-in-out infinite;
}

.feature-item h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature-item p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.guarantee-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-align: center;
}

.guarantee-section h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.guarantee-section p {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin: 0;
}

/* === Editable Community Textarea === */
.editable {
  width: 100%;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  resize: none;
  font-size: 1rem;
}

/* === Enhanced Footer === */
footer {
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(17,17,17,0.9));
  color: #ffd700;
  margin-top: 4rem;
  position: relative;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h4,
.footer-services h4,
.footer-legal h4 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-info p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.founder-contacts {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.founder-contacts h5 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.founder-contacts p {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.founder-contacts p strong {
  color: #ffd700;
}

.footer-services ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-services li,
.footer-legal li {
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.copyright {
  margin-bottom: 1rem;
}

.copyright p {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.legal-notice {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

.footer-disclaimers {
  background: rgba(255, 215, 0, 0.05);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 1rem;
}

.footer-disclaimers p {
  font-size: 0.85rem;
  color: #ddd;
  line-height: 1.5;
  margin: 0;
}

.typing-text {
  border-right: 2px solid #ffd700;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(50) infinite, blink 0.5s step-end infinite alternate;
  margin: 0 auto;
  max-width: fit-content;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  90% { width: 100% }
  100% { width: 0 }
}

@keyframes blink {
  50% { border-color: transparent }
}

footer a.footer-admin {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  opacity: 0.3;
  transition: opacity 0.3s;
}

footer a.footer-admin:hover {
  opacity: 1;
}

footer a.footer-admin img {
  width: 24px;
  height: 24px;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* === Mobile Navigation Styles === */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    order: 3;
  }
  
  .header-left {
    order: 1;
    flex: 1;
  }
  
  .header-right {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 4rem 1rem 1rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    order: 2;
  }
  
  .header-right.active {
    right: 0;
  }
  
  .header-right nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .header-right nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }
  
  .header-right .admin-login {
    margin: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 1rem;
  }
  
  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  
  .mobile-overlay.active {
    display: block;
  }
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .services-highlight h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 2rem;
  }
  
  .team-container h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 2rem;
  }
  
  .extra-section h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.5rem;
  }
  
  .card-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .portfolio-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  header {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 1rem;
    flex-wrap: nowrap;
  }
  
  .announcement-banner {
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .announcement-banner .announcement-text {
    padding-right: 2.5rem;
  }
  
  .hero {
    padding: 1.5rem 1rem;
    min-height: 50vh;
  }
  
  .hero-logo img {
    height: 100px;
    max-width: 250px;
  }
  
  .services-highlight,
  .team-container {
    padding: 4rem 1rem;
  }
  
  .extra-section {
    padding: 3rem 1rem;
    margin: 2rem auto;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    padding: 2rem 1rem 1rem;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .services-highlight h1,
  .team-container h2,
  .extra-section h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .card-container {
    padding: 0.8rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  #contactForm {
    padding: 1.2rem;
    margin: 0.5rem;
  }
  
  .team-container h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .extra-section {
    padding: 1.5rem 1rem;
  }
  
  .extra-section h2 {
    font-size: 1.5rem;
  }
  
  .extra-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-left img {
    height: 40px;
    max-width: 150px;
  }
  
  header {
    padding: 0.5rem 0.8rem;
  }
  
  .hero {
    padding: 1rem 0.5rem;
    min-height: 40vh;
  }
  
  .hero-logo img {
    height: 80px;
    max-width: 200px;
  }
  
  .services-highlight,
  .team-container {
    padding: 2.5rem 0.5rem;
  }
  
  .extra-section {
    padding: 2rem 0.5rem;
    margin: 1.5rem auto;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .footer-content {
    padding: 1.5rem 0.5rem 1rem;
  }
  
  .footer-disclaimers p {
    font-size: 0.8rem;
  }
  
  .legal-hero {
    padding: 2rem 1rem;
  }
  
  .legal-section {
    padding: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .legal-text ul,
  .legal-text ol {
    padding-left: 1.5rem;
  }
  
  .card-container {
    padding: 0.5rem;
    gap: 1rem;
  }
  
  .card {
    padding: 1.2rem;
  }
  
  .card img {
    width: 60px;
  }
  
  #contactForm {
    padding: 1rem;
    margin: 0.3rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .admin-form input,
  .admin-form textarea,
  .admin-form select,
  #contactForm input,
  #contactForm textarea,
  #contactForm select {
    padding: 0.7rem;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .admin-tabs {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .tab-button {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .admin-controls {
    grid-template-columns: 1fr;
  }
  
  .team-cards {
    grid-template-columns: 1fr;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .submission-list {
    max-height: 300px;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .portfolio-image {
    height: 200px;
  }
  
  .portfolio-details {
    padding: 1rem;
  }
}

@media (max-width: 360px) {
  .header-left img {
    height: 35px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .card {
    padding: 0.8rem;
  }
  
  #contactForm {
    padding: 0.8rem;
  }
}

/* === Touch-Friendly Improvements === */
.cta-button,
.tab-button,
button,
input[type="submit"],
input[type="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle,
  .admin-login,
  nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .admin-login img {
    padding: 10px;
  }
  
  /* Improve text selection on mobile */
  .hero h1,
  .hero p,
  .card h3,
  .card p {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
  
  /* Reduce animations on mobile for performance */
  .card::before,
  .card::after,
  .services-highlight::before,
  .team-container::before,
  .extra-section::before {
    animation-duration: 8s;
  }
  
  /* Simplify effects on low-end devices */
  @media (max-width: 480px) and (max-height: 800px) {
    .card::before,
    .services-highlight::before,
    .team-container::before,
    .extra-section::before {
      display: none;
    }
    
    .scroll-section {
      transition-duration: 0.6s;
    }
  }
}

/* === Legal Page Styling === */
.legal-page {
  min-height: 100vh;
  padding-top: 2rem;
}

.legal-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(17,17,17,0.8));
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.legal-hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  padding: 2rem 0;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  background: rgba(255, 215, 0, 0.05);
  margin-bottom: 3rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.legal-section h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

.legal-text h3 {
  color: #ffed4a;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  text-shadow: 0 0 5px rgba(255, 237, 74, 0.5);
}

.legal-text p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

.legal-text strong {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.legal-contact {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 74, 0.05));
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  margin-top: 3rem;
}

.legal-contact h2 {
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-details p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details em {
  color: #ccc;
  font-size: 0.9rem;
}

/* Performance optimizations */
.scroll-section,
.card,
.section-divider,
.legal-section {
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-section {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* === Whitney AI Chatbot === */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
}

.chatbot-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gentle-pulse 3s infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

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

.chatbot-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: badge-bounce 2s infinite;
}

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

.chat-interface {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: rgba(255,215,0,0.15);
  border: 1px solid #ffd700;
  color: #ffd700;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 15;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chat-interface:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

.chat-interface.hidden {
  display: none;
}

.chat-header {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #111;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-title {
  flex: 1;
}

.chat-title h4 {
  margin: 0;
  font-size: 16px;
  color: #111;
}

.chat-status {
  font-size: 12px;
  color: #333;
  opacity: 0.8;
}

.close-chat {
  background: none;
  border: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-chat:hover {
  background: rgba(0, 0, 0, 0.1);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.4;
}

.message.bot {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  align-self: flex-start;
}

.message.user {
  background: #ffd700;
  color: #111;
  align-self: flex-end;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 18px;
  max-width: 80px;
  align-self: flex-start;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: typing-dots 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dots {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chat-input-container {
  display: flex;
  padding: 15px;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

#chat-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

#chat-input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.1);
}

#chat-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.send-button {
  width: 45px;
  height: 45px;
  background: #ffd700;
  color: #111;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.send-button:hover {
  background: #fff;
  transform: scale(1.05);
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  right: 70px;
  max-width: 280px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1999;
}

.chat-popup:not(.hidden) {
  transform: translateX(0);
  opacity: 1;
}

.chat-popup.hidden {
  display: none;
}

.popup-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

#popup-text {
  flex: 1;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.close-popup {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background: rgba(255, 215, 0, 0.1);
}

.typewriter-text {
  overflow: hidden;
  border-right: 2px solid #ffd700;
  white-space: nowrap;
  margin: 0;
  animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #ffd700 }
}

/* Mobile Responsive Chatbot */
@media (max-width: 768px) {
  .chatbot-container {
    bottom: 15px;
    right: 15px;
  }
  
  .chatbot-toggle {
    width: 55px;
    height: 55px;
  }
  
  .chatbot-avatar {
    width: 30px;
    height: 30px;
  }
  
  .chat-interface {
    width: calc(100vw - 30px);
    height: 70vh;
    bottom: 75px;
    right: -15px;
    left: 15px;
  }
  
  .chat-popup {
    right: 75px;
  }
}

/* === Professional Quote System Styles === */

/* Quote Methods Section */
.quote-methods {
  padding: 4rem 0;
  background: rgba(17, 17, 17, 0.9);
}

.quote-methods .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quote-methods h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.quote-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quote-option {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.85));
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.quote-option:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.quote-option h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  font-weight: 600;
}

.quote-option p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.5;
  color: #ccc;
  line-height: 1.6;
}

/* Multi-Step Form */
.quote-form-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.8);
}

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 33.33%;
}

.step-indicator {
  color: #ccc;
  font-size: 0.9rem;
}

/* Form Steps */
.multi-step-form {
  position: relative;
  min-height: 500px;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
  text-align: center;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.service-card.selected,
.service-card.active {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.other-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #ffd700;
}

.service-card p {
  font-size: 0.8rem;
  color: #ccc;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* Quote Summary */
.quote-summary {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.quote-summary h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.form-navigation button {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-navigation button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.form-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

#prev-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #ffd700;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.modal-header {
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #ffd700;
  margin: 0;
}

.close {
  color: #ffd700;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  transform: scale(1.2);
}

.modal-body {
  padding: 2rem;
}

/* Whitney Quote Chat */
.chat-container {
  height: 400px;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.message {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.message.ai-message {
  justify-content: flex-start;
}

.message.user-message {
  justify-content: flex-end;
}

.message-content {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 15px;
  max-width: 80%;
}

.user-message .message-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.chat-input-container {
  display: flex;
  gap: 0.5rem;
}

.chat-input-container input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  color: #fff;
}

.chat-input-container button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Phone Options */
.phone-options {
  display: grid;
  gap: 1rem;
}

.phone-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.phone-option:hover {
  border-color: #ffd700;
  transform: translateY(-3px);
}

.phone-option h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.phone-option p {
  color: #ccc;
  margin-bottom: 1rem;
}

.phone-option a,
.phone-option button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: typing-pulse 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-pulse {
  0%, 60%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .quote-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .quote-form-container {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }
  
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-navigation {
    flex-direction: column-reverse;
  }
  
  .modal-content {
    width: 95%;
    margin: 2% auto;
  }
  
  .chat-container {
    height: 300px;
    max-width: calc(100vw - 120px);
  }
}

@media (max-width: 480px) {
  .chat-interface {
    width: calc(100vw - 20px);
    height: 75vh;
    right: -10px;
    left: 10px;
  }
  
  .chat-popup {
    right: 70px;
    max-width: calc(100vw - 100px);
  }
}

/* ==================== ACCESSIBILITY UTILITIES ==================== */

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus indicators for accessibility */
button:focus-visible,
input:focus-visible,
a:focus-visible,
.chatbot-toggle:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px #000, 0 0 0 4px #ffd700;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .message.bot .message-content {
    border-width: 2px;
    background: #000;
    color: #fff;
  }
  
  .message.user .message-content {
    background: #fff;
    color: #000;
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .advanced-message,
  .sparkle,
  .avatar-glow,
  .typing-dots .dot,
  .bot-avatar {
    animation: none !important;
    transition: none !important;
  }
  
  .typeWriterEffect {
    animation: none;
  }
}

/* ==================== ADVANCED WHITNEY AI CHATBOT STYLES ==================== */

/* Advanced Message Animations */
.advanced-message {
  position: relative;
  animation: slideInUp 0.3s ease-out;
}

.advanced-message .message-content {
  position: relative;
  overflow: hidden;
}

.message-content.typing::after {
  content: '|';
  animation: blink 1s infinite;
  color: #ffd700;
}

/* Avatar System with Glow Effects */
.bot-avatar, .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: avatarFloat 3s ease-in-out infinite;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.bot-avatar.pulsing {
  animation: avatarFloat 3s ease-in-out infinite, pulse 1.5s ease-in-out infinite;
}

/* Advanced Typing Indicator */
.typing-indicator .message-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots .dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: typingDots 1.4s ease-in-out infinite;
}

.typing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.thinking-text {
  font-size: 12px;
  color: #888;
  font-style: italic;
  animation: fadeInOut 2s ease-in-out infinite;
}

/* Sparkle Effects for Bot Messages */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkleFloat 2s ease-out forwards;
}

.sparkle::before {
  content: '✨';
  font-size: 12px;
}

/* Message Layout Enhancements */
.message.bot {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.message.user {
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 12px;
}

.message.bot .message-content {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid #ffd700;
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.message.user .message-content {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: 1px solid #e6c200;
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Advanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes glowPulse {
  0%, 100% { 
    opacity: 0.6; 
    transform: scale(1);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.1);
  }
}

@keyframes typingDots {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes sparkleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Cost Calculation Display Enhancements */
.cost-breakdown {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
  animation: costBreakdownAppear 0.5s ease-out;
}

.cost-breakdown::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 10px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cost-item:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.1em;
  color: #ffd700;
}

.cost-label {
  color: #ccc;
}

.cost-value {
  color: #ffd700;
  font-weight: bold;
}

@keyframes costBreakdownAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.8;
    transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg);
  }
}

/* Mobile-specific optimizations for Whitney chatbot */
@media (max-width: 768px) {
  .chat-interface {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    z-index: 9999 !important;
  }
  
  .chatbot-toggle {
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
  }
  
  .chat-messages {
    padding: 10px !important;
    font-size: 16px !important; /* Better readability on mobile */
  }
  
  .chat-input-container input {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  .message.bot .message-content,
  .message.user .message-content {
    max-width: 85% !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  
  .bot-avatar, .user-avatar {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .chat-header h4 {
    font-size: 18px !important;
  }
  
  .chat-status {
    font-size: 12px !important;
  }
  
  .cost-breakdown {
    margin: 5px 0 !important;
    padding: 10px !important;
  }
  
  .cost-item {
    padding: 5px 0 !important;
    font-size: 14px !important;
  }
}

/* ==================== WEB SERVICES PAGE ENHANCEMENTS ==================== */

/* Enhanced Hero Section */
.web-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.web-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffd700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: slideInLeft 0.6s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease-out;
}

.gradient-text {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: slideInUp 1.2s ease-out;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: slideInUp 1.4s ease-out;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.cta-button.secondary:hover {
  background: #ffd700;
  color: #000;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.floating-devices {
  position: relative;
  width: 400px;
  height: 300px;
}

.device {
  position: absolute;
  border-radius: 8px;
  background: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.device.desktop {
  width: 200px;
  height: 120px;
  top: 20px;
  left: 50px;
  animation-delay: 0s;
}

.device.tablet {
  width: 80px;
  height: 100px;
  top: 80px;
  right: 20px;
  animation-delay: -2s;
}

.device.mobile {
  width: 50px;
  height: 80px;
  bottom: 20px;
  left: 20px;
  animation-delay: -4s;
}

.screen {
  background: #fff;
  margin: 8px;
  border-radius: 4px;
  height: calc(100% - 16px);
  overflow: hidden;
}

.demo-site {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.demo-header {
  height: 15%;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
}

.demo-content {
  flex: 1;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-block {
  background: #e0e0e0;
  height: 30%;
  border-radius: 2px;
}

.demo-block.small {
  height: 15%;
}

/* Enhanced Package Cards */
.packages-showcase {
  margin: 4rem 0;
  gap: 2rem;
}

.package-card {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.premium-highlight {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.package-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-100%);
  animation: slideDown 0.5s ease-out 0.5s both;
}

.package-badge.premium {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.package-card.enterprise-highlight {
  border-color: #9d4edd;
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(157, 78, 221, 0.1));
}

.package-badge.enterprise {
  background: linear-gradient(135deg, #9d4edd, #c77dff);
  color: white;
}

.package-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 1rem 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: #ffd700;
  width: 16px;
}

.package-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.preview-btn, .quote-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.preview-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.preview-btn:hover {
  background: linear-gradient(135deg, #357abd, #2868a3);
  transform: translateY(-2px);
}

.quote-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.quote-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #fff176);
  transform: translateY(-2px);
}

/* Preview Modal Styles */
.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.preview-modal.show {
  opacity: 1;
}

.preview-modal-content {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.preview-modal.show .preview-modal-content {
  transform: scale(1);
}

.preview-header {
  background: #2a2a2a;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.preview-header h3 {
  margin: 0;
  color: #ffd700;
}

.preview-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.device-switcher {
  display: flex;
  gap: 0.5rem;
}

.device-btn {
  padding: 8px 12px;
  background: #333;
  border: none;
  border-radius: 6px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.device-btn.active,
.device-btn:hover {
  background: #ffd700;
  color: #000;
}

.close-preview {
  background: #ff6b6b;
  border: none;
  border-radius: 6px;
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-preview:hover {
  background: #ff5252;
  transform: scale(1.1);
}

.preview-frame-container {
  flex: 1;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-mockup {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-bar {
  height: 40px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.browser-url {
  flex: 1;
  background: white;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px;
  color: #666;
}

.browser-actions {
  color: #666;
}

.preview-iframe {
  height: calc(100% - 40px);
  background: white;
  overflow: auto;
  transition: all 0.3s ease;
}

.preview-iframe.tablet {
  margin: 0 15%;
}

.preview-iframe.mobile {
  margin: 0 35%;
}

.preview-footer {
  background: #2a2a2a;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
}

.preview-features {
  display: flex;
  gap: 2rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 14px;
}

.feature-highlight i {
  color: #ffd700;
}

.get-started-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Demo Website Styles */
.demo-website {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: #333;
}

.demo-header {
  background: #2c3e50;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.demo-nav {
  display: flex;
  gap: 1.5rem;
}

.demo-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.demo-link:hover {
  color: #3498db;
}

.demo-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.demo-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.demo-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.demo-cta {
  background: #ffd700;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.demo-content {
  padding: 4rem 2rem;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
}

.demo-footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: auto;
}

/* Premium Demo Styles */
.premium-demo .demo-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.premium-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: #ffd700;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.premium-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.premium-title .gradient-text {
  background: linear-gradient(135deg, #ffd700, #fff176);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.demo-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.hero-animation {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; right: 20%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 50%; right: 10%; animation-delay: -1s; }
.floating-element:nth-child(3) { top: 80%; right: 30%; animation-delay: -2s; }

.premium-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid #dee2e6;
  position: relative;
}

.premium-card.featured {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-color: #ffd700;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffd700;
  color: #333;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  margin-top: 1rem;
}

.premium-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #333;
}

.feature-item i {
  font-size: 2rem;
  color: #667eea;
}

/* Animations */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes slideInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

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

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

/* Shopping Cart Styles */
.cart-section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.cart-section:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.cart-count {
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  right: 5px;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  color: #ffd700;
}

.close-cart {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-cart:hover {
  background: #333;
  color: #fff;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
}

.empty-cart {
  text-align: center;
  color: #888;
  padding: 2rem 1rem;
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #444;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #2a2a2a;
}

.item-details h4 {
  margin: 0 0 0.5rem 0;
  color: #fff;
}

.item-price {
  margin: 0;
  color: #ffd700;
  font-weight: bold;
}

.remove-item {
  background: #ff6b6b;
  border: none;
  color: white;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: #ff5252;
  transform: scale(1.1);
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid #333;
  background: #2a2a2a;
  border-radius: 0 0 10px 10px;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1rem;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Service Request Modal */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-modal.show {
  opacity: 1;
}

.service-modal-content {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.service-modal.show .service-modal-content {
  transform: scale(1);
}

.service-header {
  background: #2a2a2a;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.service-header h3 {
  margin: 0;
  color: #ffd700;
}

.close-service {
  background: #ff6b6b;
  border: none;
  border-radius: 6px;
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-service:hover {
  background: #ff5252;
  transform: scale(1.1);
}

.service-body {
  padding: 2rem;
  overflow-y: auto;
}

.selected-package {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid #ffd700;
}

.selected-package h4 {
  margin: 0 0 0.5rem 0;
  color: #ffd700;
  font-size: 1.2rem;
}

.selected-package p {
  margin: 0;
  color: #ccc;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: #ccc;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.service-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.cancel-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #666;
  color: #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: #666;
  color: #fff;
}

.submit-service-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Enhanced Package Actions */
.package-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}

.add-to-cart-btn,
.request-service-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  grid-column: 1 / -1;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #218838, #1ba085);
  transform: translateY(-1px);
}

.request-service-btn {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  color: white;
  grid-column: 1 / -1;
}

.request-service-btn:hover {
  background: linear-gradient(135deg, #138496, #1ba085);
  transform: translateY(-1px);
}

.preview-btn {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
}

.preview-btn:hover {
  background: linear-gradient(135deg, #357abd, #2868a3);
  transform: translateY(-1px);
}

/* Enhanced Demo Styles */
.demo-mobile-toggle {
  display: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
}

.hero-content {
  flex: 1;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-badge {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.demo-cta.primary {
  background: #ffd700;
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.demo-cta.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.demo-services {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.demo-card.featured {
  position: relative;
  border-color: #ffd700;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6b6b;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.demo-testimonial {
  background: #667eea;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonial-content blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 1rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-content cite {
  font-size: 1rem;
  opacity: 0.8;
}

.demo-user-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.demo-login,
.demo-cart {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: #28a745;
  background: linear-gradient(135deg, #1a1a1a, #1e3a2a);
}

.notification.error {
  border-color: #dc3545;
  background: linear-gradient(135deg, #1a1a1a, #3a1e1e);
}

.notification.warning {
  border-color: #ffc107;
  background: linear-gradient(135deg, #1a1a1a, #3a3a1e);
}

.notification.info {
  border-color: #17a2b8;
  background: linear-gradient(135deg, #1a1a1a, #1e2e3a);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
}

.notification-close:hover {
  color: #fff;
}

/* Animation for cart count */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

/* Advanced Announcement System Styles */
.advanced-announcement-container {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
}

.announcement-bubble {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 300px;
  max-width: 400px;
  pointer-events: auto;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Priority-based styling */
.announcement-bubble.info {
  border-color: #4a90e2;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.2));
}

.announcement-bubble.success {
  border-color: #28a745;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.2));
}

.announcement-bubble.warning {
  border-color: #ffc107;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.2));
}

.announcement-bubble.urgent {
  border-color: #dc3545;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.2));
}

.announcement-bubble.celebration {
  border: 3px solid;
  border-image: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b, #eb4d4b) 1;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.bubble-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.announcement-icon {
  font-size: 1.8rem;
  animation: iconBounce 2s infinite;
}

.announcement-text {
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.announcement-bubble .close-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: bold;
}

.announcement-bubble .close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.bubble-tail {
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffd700;
  opacity: 0.8;
}

/* Visual Effects */
.glow-effect {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
}

.pulse-effect {
  animation: pulse 2s infinite;
}

.float-effect {
  animation: float 3s ease-in-out infinite;
}

.shake-effect {
  animation: shake 0.5s infinite;
}

/* Entrance Animations */
.entrance-fade {
  animation: fadeIn 0.5s ease-out;
}

.entrance-slide {
  animation: slideDown 0.5s ease-out;
}

.entrance-bounce {
  animation: bounceIn 0.8s ease-out;
}

.entrance-zoom {
  animation: zoomIn 0.5s ease-out;
}

.entrance-spin {
  animation: spinIn 0.8s ease-out;
}

/* Exit Animation */
.exit-animation {
  animation: fadeOut 0.5s ease-in forwards;
}

/* Particle Effects */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
}

.announcement-particle {
  position: absolute;
  font-size: 12px;
  color: #ffd700;
  animation: particleFloat 3s infinite linear;
  pointer-events: none;
}

/* Floating Bubbles */
.floating-bubbles-container {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  pointer-events: none;
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.1));
  border-radius: 50%;
  animation: floatBubble 4s infinite linear;
  pointer-events: none;
}

/* Keyframe Animations */
@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

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

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

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

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3) translateY(-100px); }
  50% { opacity: 1; transform: scale(1.1) translateY(0); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes spinIn {
  from { opacity: 0; transform: rotate(-360deg) scale(0.5); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-20px) scale(0.9); }
}

@keyframes particleFloat {
  0% { 
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { 
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatBubble {
  0% { 
    transform: translateY(100px) scale(0);
    opacity: 0;
  }
  10% { 
    opacity: 0.6;
    transform: translateY(80px) scale(1);
  }
  90% { opacity: 0.6; }
  100% { 
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* Rainbow border animation for celebration */
@keyframes rainbowBorder {
  0% { border-image-source: linear-gradient(45deg, #ff6b6b, #4ecdc4); }
  25% { border-image-source: linear-gradient(45deg, #4ecdc4, #45b7d1); }
  50% { border-image-source: linear-gradient(45deg, #45b7d1, #f9ca24); }
  75% { border-image-source: linear-gradient(45deg, #f9ca24, #f0932b); }
  100% { border-image-source: linear-gradient(45deg, #f0932b, #ff6b6b); }
}

.announcement-bubble.celebration {
  animation: rainbowBorder 3s infinite;
}

/* Position-specific adjustments */
.announcement-bubble.top {
  border-radius: 0 0 20px 20px;
  width: 100%;
  max-width: none;
}

.announcement-bubble.center {
  transform-origin: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .announcement-bubble {
    min-width: 250px;
    max-width: calc(100vw - 40px);
    font-size: 0.9rem;
  }
  
  .bubble-content {
    gap: 0.75rem;
  }
  
  .announcement-icon {
    font-size: 1.5rem;
  }
  
  .floating-bubble, .announcement-particle {
    display: none; /* Reduce effects on mobile for performance */
  }
}

/* Global Fix for Text and Element Visibility */
* {
  color: #fff !important;
}

p, span, div, h1, h2, h3, h4, h5, h6, label, li, a {
  color: #fff !important;
}

/* Ensure all cards have proper backgrounds and text visibility */
.card, .quote-option, .service-card, .package-card, .form-container {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.85)) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
}

.card *, .quote-option *, .service-card *, .package-card *, .form-container * {
  color: #fff !important;
}

/* Fix modal backgrounds */
.modal, .modal-content, .preview-modal, .preview-modal-content {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(34, 34, 34, 0.9)) !important;
  color: #fff !important;
}

/* Fix form elements */
input, textarea, select {
  background: rgba(42, 42, 42, 0.8) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
}

input::placeholder, textarea::placeholder {
  color: #999 !important;
}

/* Fix button visibility */
button {
  color: #000 !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
}

button:hover {
  background: #fff !important;
  color: #111 !important;
}

/* Fix headings */
h1, h2, h3, h4, h5, h6 {
  color: #ffd700 !important;
}

/* Fix quote text specifically */
.quote-option h3 {
  color: #ffd700 !important;
}

.quote-option p {
  color: #ccc !important;
}

/* Fix service card text */
.service-card h4 {
  color: #ffd700 !important;
}

.service-card p {
  color: #ccc !important;
}

/* Prevent text from being invisible */
.invisible-fix {
  color: #fff !important;
  background: rgba(26, 26, 26, 0.9) !important;
}

/* Fix Z-index and Positioning Issues */
header {
  z-index: 1000 !important;
  position: relative !important;
}

.modal, .preview-modal {
  z-index: 9999 !important;
  position: fixed !important;
}

.announcement-banner, .advanced-announcement-container {
  z-index: 10000 !important;
}

/* Fix clipping and overflow issues */
.container, .card, .quote-option {
  overflow: visible !important;
  position: relative !important;
}

/* Fix quote form visibility */
.quote-form-section {
  background: rgba(17, 17, 17, 0.9) !important;
  padding: 3rem 0 !important;
  margin: 2rem 0 !important;
}

.quote-form-container {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9)) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.7) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
}

/* Fix service grid layout */
.service-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 1.5rem !important;
  margin: 2rem 0 !important;
}

/* Fix quote options layout */
.quote-options {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  margin: 2rem 0 !important;
}

/* Ensure proper spacing and visibility */
section {
  margin: 3rem 0 !important;
  padding: 2rem 0 !important;
}

/* Fix button positioning and visibility */
.cta-button {
  z-index: 10 !important;
  position: relative !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.cta-button:hover {
  background: #fff !important;
  color: #111 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .web-hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .floating-devices {
    width: 300px;
    height: 200px;
    margin-top: 2rem;
  }
  
  .package-actions {
    grid-template-columns: 1fr;
  }
  
  .preview-modal-content {
    width: 95%;
    height: 95%;
  }
  
  .preview-frame-container {
    padding: 1rem;
  }
  
  .preview-features {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .preview-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cart-dropdown {
    width: 300px;
    right: -50px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .demo-mobile-toggle {
    display: block;
  }
  
  .demo-nav {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  /* Mobile-specific fixes */
  .quote-options {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .card, .quote-option {
    padding: 1.5rem !important;
    margin: 1rem 0 !important;
  }
}

/* === Snow Removal Pricing Styles === */
.pricing-section, .commercial-pricing, .hourly-rates, .additional-info {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.2rem;
  color: #ccc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.seasonal-options {
  margin: 4rem 0;
  text-align: center;
}

.seasonal-options h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 2rem;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contract-card {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contract-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.15);
}

.contract-card h4 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.contract-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.add-on-services {
  margin: 3rem 0;
  text-align: center;
}

.add-on-services h3 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 2rem;
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.add-on-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.add-on-item:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.hourly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.hourly-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hourly-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.hourly-card h4 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.hourly-card .rate {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.info-card h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  color: #ccc;
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.info-card li::before {
  content: "•";
  color: #ffd700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem 0;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.cta-button.secondary:hover {
  background: #ffd700;
  color: #000;
}

/* Enhanced Snow Removal Page Styles */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.pricing-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card-pro {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.pricing-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.pricing-card-pro:hover::before {
  left: 100%;
}

.pricing-card-pro:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.pricing-card-pro.popular {
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.pricing-card-pro.premium {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
  border-color: #ffd700;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.popular-badge, .premium-badge, .best-value-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.premium-badge, .best-value-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.price-section {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.price {
  font-size: 2.5rem !important;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-range {
  font-size: 1.5rem;
  opacity: 0.8;
}

.price-period {
  display: block;
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.feature i {
  color: #ffd700;
  width: 16px;
}

.select-plan {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.select-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.select-plan.addon-btn {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.select-plan.premium-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
}

.seasonal-showcase {
  margin: 5rem 0;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.seasonal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.seasonal-header h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.contract-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.contract-card-deluxe {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
}

.contract-card-deluxe.featured {
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.contract-card-deluxe:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.contract-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.contract-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.savings-badge, .best-value-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.contract-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
}

.price-big {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contract-features {
  margin-bottom: 2rem;
}

.feature-highlight {
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
  color: #ffd700;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contract-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contract-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.contract-btn.seasonal-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
}

.early-bird-banner {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: pulse-banner 3s ease-in-out infinite;
}

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

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-icon {
  font-size: 3rem;
}

.banner-text h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.banner-btn {
  background: #000;
  color: #ffd700;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Enhanced Pricing */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .contract-comparison {
    grid-template-columns: 1fr;
  }
  
  .contract-card-deluxe.featured {
    transform: none;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons-hero {
    flex-direction: column;
    align-items: center;
  }
  
  .contract-grid {
    grid-template-columns: 1fr;
  }
  
  .hourly-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-header h2 {
    font-size: 2rem;
  }
  
  .pricing-card .price {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === Advanced Page Transitions === */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
}

.transition-content {
  text-align: center;
  color: #ffd700;
}

.transition-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffd700;
  animation: spin 2s linear infinite;
  margin-bottom: 1rem;
}

/* === Enhanced Accessibility === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .page-loader,
  .loader-particles,
  .particle {
    animation: none !important;
  }
}

/* === High Contrast Mode Support === */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #ffff00;
    --secondary-color: #ffffff;
    --bg-color: #000000;
  }
  
  body {
    background: var(--bg-color);
    color: var(--secondary-color);
  }
  
  .cta-button,
  nav a {
    background: var(--primary-color);
    color: var(--bg-color);
    border: 2px solid var(--secondary-color);
  }
}

/* === Performance Optimizations === */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* === Modern CSS Features === */
@supports (backdrop-filter: blur(10px)) {
  .modern-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@supports (display: grid) {
  .grid-fallback {
    display: grid;
  }
}

/* === Additional Spin Animation === */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === Enhanced Button Hover Effects === */
.enhanced-button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.enhanced-button::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;
}

.enhanced-button:hover::before {
  left: 100%;
}

/* === Improved Form Styling === */
.modern-input {
  position: relative;
  margin-bottom: 1.5rem;
}

.modern-input input,
.modern-input textarea,
.modern-input select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modern-input input:focus,
.modern-input textarea:focus,
.modern-input select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.modern-input label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background: rgba(17, 17, 17, 0.8);
  padding: 0 0.5rem;
}

.modern-input input:focus + label,
.modern-input input:not(:placeholder-shown) + label,
.modern-input textarea:focus + label,
.modern-input textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: #ffd700;
}

/* === CRITICAL LAYOUT FIXES FOR HOME PAGE === */

/* Global Background and Text Visibility Fixes */
body {
  background: #111 !important;
  color: #fff !important;
}

/* Fix white backgrounds that make text invisible */
* {
  background-color: transparent !important;
}

/* Exception for elements that need specific backgrounds */
.card, .service-card, .team-member, .hero-badge, 
.cta-button, .btn, .button, .modal-content,
.chat-interface, .header, nav, footer {
  background: rgba(17, 17, 17, 0.95) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
}

/* Hero Section Critical Fixes */
.hero {
  background: transparent !important;
  color: #fff !important;
  min-height: 70vh !important;
  padding: 3rem 1rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.hero-content {
  background: transparent !important;
  color: #fff !important;
  z-index: 2 !important;
}

.hero h1, .hero-title {
  color: #ffd700 !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4) !important;
  background: transparent !important;
}

.hero p, .hero-description {
  color: #ccc !important;
  background: transparent !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.hero-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  border: none !important;
}

/* Service Cards Critical Fixes */
.service-card, .services-grid .card {
  background: rgba(17, 17, 17, 0.9) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.service-card:hover, .services-grid .card:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  border-color: #ffd700 !important;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
  transform: translateY(-5px) !important;
}

.service-card h3, .services-grid .card h3 {
  color: #ffd700 !important;
  background: transparent !important;
}

.service-card p, .services-grid .card p {
  color: #ccc !important;
  background: transparent !important;
}

/* Team Member Cards Fixes */
.team-member {
  background: rgba(17, 17, 17, 0.9) !important;
  border: 2px solid rgba(255, 215, 0, 0.2) !important;
  color: #fff !important;
}

.team-member h4 {
  color: #ffd700 !important;
  background: transparent !important;
}

.team-member p {
  color: #ccc !important;
  background: transparent !important;
}

/* Navigation Fixes */
header, nav {
  background: rgba(17, 17, 17, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
}

nav ul li a {
  color: #fff !important;
  background: transparent !important;
  transition: color 0.3s ease !important;
}

nav ul li a:hover {
  color: #ffd700 !important;
}

/* Footer Fixes */
footer {
  background: rgba(17, 17, 17, 0.95) !important;
  color: #fff !important;
  border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
}

footer h4 {
  color: #ffd700 !important;
  background: transparent !important;
}

footer p, footer a {
  color: #ccc !important;
  background: transparent !important;
}

footer a:hover {
  color: #ffd700 !important;
}

/* Button Fixes */
.cta-button, .btn, button {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  border: none !important;
  padding: 1rem 2rem !important;
  border-radius: 10px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
  text-decoration: none !important;
}

.cta-button:hover, .btn:hover, button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
}

.cta-button.secondary {
  background: transparent !important;
  border: 2px solid #ffd700 !important;
  color: #ffd700 !important;
}

.cta-button.secondary:hover {
  background: #ffd700 !important;
  color: #000 !important;
}

/* Stats and Visual Elements */
.stat-number {
  color: #ffd700 !important;
  background: transparent !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
}

.stat-label {
  color: #ccc !important;
  background: transparent !important;
}

/* Form Elements */
input, textarea, select {
  background: rgba(17, 17, 17, 0.9) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  padding: 1rem !important;
  border-radius: 8px !important;
}

input:focus, textarea:focus, select:focus {
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2) !important;
  outline: none !important;
}

/* Modal and Popup Fixes */
.modal-content {
  background: rgba(17, 17, 17, 0.95) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
  backdrop-filter: blur(10px) !important;
}

/* Text Selection */
::selection {
  background: rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px !important;
}

::-webkit-scrollbar-track {
  background: #222 !important;
}

::-webkit-scrollbar-thumb {
  background: #ffd700 !important;
  border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffed4e !important;
}

/* Ensure proper z-index stacking */
.hero {
  z-index: 1 !important;
}

.hero-content {
  z-index: 2 !important;
}

nav, header {
  z-index: 1000 !important;
}

.modal, .chat-interface {
  z-index: 9999 !important;
}

/* === ENHANCED SERVICE CARDS SECTION === */

/* Services Highlight Section Fixes */
.services-highlight {
  background: transparent !important;
  padding: 4rem 2rem !important;
  position: relative !important;
}

.services-highlight h1 {
  color: #ffd700 !important;
  background: transparent !important;
  text-align: center !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  margin-bottom: 3rem !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6) !important;
  position: relative !important;
}

/* Enhanced Card Container */
.card-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2.5rem !important;
  padding: 2rem !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* Enhanced Service Cards */
.services-highlight .card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(30, 30, 30, 0.9)) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 8px rgba(255, 215, 0, 0.1) !important;
  color: #fff !important;
}

/* Card Hover Effects */
.services-highlight .card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  border-color: #ffd700 !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(17, 17, 17, 0.95)) !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Card Icons */
.services-highlight .card img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  margin-bottom: 1.5rem !important;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)) !important;
  transition: all 0.3s ease !important;
}

.services-highlight .card:hover img {
  transform: scale(1.1) !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) !important;
}

/* Card Titles */
.services-highlight .card h3 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
  transition: color 0.3s ease !important;
}

.services-highlight .card:hover h3 {
  color: #ffed4e !important;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
}

/* Card Descriptions */
.services-highlight .card p {
  color: #ccc !important;
  background: transparent !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  transition: color 0.3s ease !important;
}

.services-highlight .card:hover p {
  color: #fff !important;
}

/* Animated Border Effect for Cards */
.services-highlight .card::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 215, 0, 0.4), 
    transparent, 
    rgba(255, 215, 0, 0.2), 
    transparent) !important;
  background-size: 400% 400% !important;
  border-radius: 22px !important;
  z-index: -1 !important;
  animation: border-pulse 3s ease-in-out infinite !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.services-highlight .card:hover::before {
  opacity: 1 !important;
}

@keyframes border-pulse {
  0%, 100% { 
    background-position: 0% 50%;
    opacity: 0.3;
  }
  50% { 
    background-position: 100% 50%;
    opacity: 0.8;
  }
}

/* Shimmer Effect on Hover */
.services-highlight .card::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 215, 0, 0.2), 
    rgba(255, 255, 255, 0.1), 
    transparent) !important;
  transition: left 0.6s ease !important;
  z-index: 1 !important;
}

.services-highlight .card:hover::after {
  left: 100% !important;
}

/* Stagger Animation Enhancements */
.stagger-animation .card {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.stagger-animation.visible .card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Individual card delays */
.stagger-animation.visible .card:nth-child(1) { transition-delay: 0.1s !important; }
.stagger-animation.visible .card:nth-child(2) { transition-delay: 0.2s !important; }
.stagger-animation.visible .card:nth-child(3) { transition-delay: 0.3s !important; }
.stagger-animation.visible .card:nth-child(4) { transition-delay: 0.4s !important; }
.stagger-animation.visible .card:nth-child(5) { transition-delay: 0.5s !important; }
.stagger-animation.visible .card:nth-child(6) { transition-delay: 0.6s !important; }

/* === ENHANCED HEADER AND NAVIGATION === */

/* Header Container Fixes */
header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 2rem !important;
  position: sticky !important;
  top: 0 !important;
  background: rgba(17, 17, 17, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.1) !important;
  z-index: 1000 !important;
  width: 100% !important;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2) !important;
  transition: all 0.3s ease !important;
}

/* Header Logo Section */
.header-left {
  display: flex !important;
  align-items: center !important;
  z-index: 1001 !important;
}

.header-left img, .round-logo {
  height: 60px !important;
  width: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid #ffd700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4) !important;
  cursor: pointer !important;
}

.header-left img:hover, .round-logo:hover {
  transform: scale(1.1) rotate(5deg) !important;
  border-color: #ffed4e !important;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  color: #ffd700 !important;
  font-size: 1.8rem !important;
  cursor: pointer !important;
  padding: 0.8rem !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  z-index: 1002 !important;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.2) !important;
  color: #ffed4e !important;
  transform: scale(1.1) !important;
}

/* Navigation Container */
.header-right {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  background: transparent !important;
}

/* Navigation Menu */
nav {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  background: transparent !important;
}

/* Navigation Links */
nav a {
  padding: 0.8rem 1.2rem !important;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  background: transparent !important;
  border: 2px solid transparent !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Navigation Link Hover Effects */
nav a:hover {
  color: #000 !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  border-color: #ffd700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4) !important;
}

/* Active Navigation Link */
nav a.active {
  color: #000 !important;
  background: #ffd700 !important;
  border-color: #ffd700 !important;
}

/* Navigation Link Shimmer Effect */
nav a::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent) !important;
  transition: left 0.5s ease !important;
  z-index: 1 !important;
}

nav a:hover::before {
  left: 100% !important;
}

/* Auth Section (Admin & Login) */
.auth-section {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-left: 1rem !important;
  padding-left: 1rem !important;
  border-left: 2px solid rgba(255, 215, 0, 0.3) !important;
  background: transparent !important;
}

.admin-access, .login-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.8rem 1rem !important;
  text-decoration: none !important;
  color: #ffd700 !important;
  background: transparent !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.admin-access:hover, .login-link:hover {
  color: #000 !important;
  background: #ffd700 !important;
  border-color: #ffd700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4) !important;
}

.admin-access i, .login-link i {
  font-size: 1rem !important;
  transition: transform 0.3s ease !important;
}

.admin-access:hover i, .login-link:hover i {
  transform: scale(1.2) !important;
}

/* Mobile Navigation Overlay */
.mobile-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  z-index: 999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

.mobile-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block !important;
  }
  
  .header-right {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 80% !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: rgba(17, 17, 17, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 2rem !important;
    z-index: 1001 !important;
    border-left: 2px solid rgba(255, 215, 0, 0.3) !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  .header-right.active {
    right: 0 !important;
  }
  
  nav {
    flex-direction: column !important;
    width: 100% !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
  }
  
  nav a {
    width: 100% !important;
    text-align: center !important;
    padding: 1.2rem !important;
    font-size: 1.1rem !important;
  }
  
  .auth-section {
    flex-direction: column !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 2px solid rgba(255, 215, 0, 0.3) !important;
    padding-top: 2rem !important;
    margin-top: 2rem !important;
  }
  
  .admin-access, .login-link {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 1.2rem !important;
  }
}

/* === ENHANCED TEAM MEMBER SECTION === */

/* Team Container Fixes */
.team-container {
  padding: 4rem 2rem !important;
  background: transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

.team-container h2 {
  text-align: center !important;
  margin-bottom: 3rem !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  color: #ffd700 !important;
  background: transparent !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

/* Enhanced Team Member Cards */
.team-container .card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(30, 30, 30, 0.9)) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 8px rgba(255, 215, 0, 0.1) !important;
  color: #fff !important;
}

.team-container .card:hover {
  transform: translateY(-15px) scale(1.05) !important;
  border-color: #ffd700 !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(17, 17, 17, 0.95)) !important;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Team Member Images */
.team-container .card img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin-bottom: 1.5rem !important;
  border: 4px solid #ffd700 !important;
  transition: all 0.4s ease !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)) !important;
}

.team-container .card:hover img {
  transform: scale(1.1) !important;
  border-color: #ffed4e !important;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) !important;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.6) !important;
}

/* Team Member Names */
.team-container .card h3 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
  transition: all 0.3s ease !important;
}

.team-container .card:hover h3 {
  color: #ffed4e !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
}

/* Team Member Roles */
.team-container .card p {
  color: #ccc !important;
  background: transparent !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: color 0.3s ease !important;
}

.team-container .card:hover p {
  color: #fff !important;
}

/* Team Card Glow Effect */
.team-container .card::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 215, 0, 0.4), 
    transparent, 
    rgba(255, 215, 0, 0.2), 
    transparent) !important;
  background-size: 400% 400% !important;
  border-radius: 22px !important;
  z-index: -1 !important;
  animation: team-card-glow 3s ease-in-out infinite !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.team-container .card:hover::before {
  opacity: 1 !important;
}

@keyframes team-card-glow {
  0%, 100% { 
    background-position: 0% 50%;
    opacity: 0.3;
  }
  50% { 
    background-position: 100% 50%;
    opacity: 0.8;
  }
}

/* === ENHANCED WHY CHOOSE US SECTION === */

/* Extra Section Container */
.extra-section {
  text-align: center !important;
  padding: 4rem 2rem !important;
  background: transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

.extra-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  color: #ffd700 !important;
  background: transparent !important;
  margin-bottom: 3rem !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-align: center !important;
}

/* Why Choose Content */
.why-choose-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Feature Grid Enhancement */
.feature-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2.5rem !important;
  margin: 3rem 0 !important;
}

/* Feature Items */
.feature-item {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(30, 30, 30, 0.8)) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 8px rgba(255, 215, 0, 0.1) !important;
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.05) !important;
  border-color: #ffd700 !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(17, 17, 17, 0.9)) !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.4) !important;
}

/* Feature Icons */
.feature-icon {
  font-size: 4rem !important;
  margin-bottom: 1.5rem !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)) !important;
  transition: all 0.3s ease !important;
  animation: feature-float 6s ease-in-out infinite !important;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) !important;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) !important;
}

@keyframes feature-float {
  0%, 100% { 
    transform: translateY(0) rotate(0deg);
  }
  50% { 
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Feature Titles */
.feature-item h3 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
  transition: all 0.3s ease !important;
}

.feature-item:hover h3 {
  color: #ffed4e !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
}

/* Feature Descriptions */
.feature-item p {
  color: #ccc !important;
  background: transparent !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  transition: color 0.3s ease !important;
}

.feature-item:hover p {
  color: #fff !important;
}

/* Guarantee Section */
.guarantee-section {
  margin-top: 3rem !important;
  padding: 2.5rem !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(17, 17, 17, 0.8)) !important;
  border: 2px solid rgba(255, 215, 0, 0.4) !important;
  border-radius: 20px !important;
  text-align: center !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 215, 0, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}

.guarantee-section h3 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6) !important;
}

.guarantee-section p {
  font-size: 1.2rem !important;
  color: #fff !important;
  background: transparent !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Guarantee Section Glow Effect */
.guarantee-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 215, 0, 0.1), 
    transparent) !important;
  animation: guarantee-glow 4s ease-in-out infinite !important;
  z-index: -1 !important;
}

@keyframes guarantee-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* === SNOW REMOVAL PAGE SPECIFIC STYLES === */

/* Snow Hero Section */
.hero-snow {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
}

.hero-snow::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%) !important;
  z-index: 1 !important;
}

.hero-snow .hero-content {
  position: relative !important;
  z-index: 10 !important;
  max-width: 800px !important;
  padding: 2rem !important;
}

.hero-snow .hero-title {
  font-size: 4rem !important;
  font-weight: bold !important;
  background: linear-gradient(135deg, #ffd700, #fff, #87ceeb) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 1rem !important;
  animation: pulse-gold 3s ease-in-out infinite !important;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5) !important;
}

.hero-snow .hero-subtitle {
  font-size: 1.5rem !important;
  color: #e0e0e0 !important;
  margin-bottom: 2rem !important;
  opacity: 0 !important;
  animation: fadeInUp 1s ease 0.5s forwards !important;
}

.hero-snow .hero-stats {
  display: flex !important;
  justify-content: space-around !important;
  margin: 3rem 0 !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
}

.hero-snow .stat-item {
  text-align: center !important;
  opacity: 0 !important;
  animation: fadeInUp 1s ease forwards !important;
}

.hero-snow .stat-item:nth-child(1) { animation-delay: 0.8s !important; }
.hero-snow .stat-item:nth-child(2) { animation-delay: 1s !important; }
.hero-snow .stat-item:nth-child(3) { animation-delay: 1.2s !important; }

.hero-snow .stat-number {
  font-size: 2.5rem !important;
  font-weight: bold !important;
  color: #ffd700 !important;
  display: block !important;
}

.hero-snow .stat-label {
  color: #ccc !important;
  font-size: 0.9rem !important;
  margin-top: 0.5rem !important;
}

/* Snow CTA Buttons */
.cta-buttons-hero {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  margin-top: 3rem !important;
  flex-wrap: wrap !important;
}

.cta-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  padding: 1rem 2rem !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
}

.cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4) !important;
  background: linear-gradient(135deg, #ffed4e, #ffd700) !important;
}

.cta-btn.secondary {
  background: transparent !important;
  color: #ffd700 !important;
  border: 2px solid #ffd700 !important;
}

.cta-btn.secondary:hover {
  background: #ffd700 !important;
  color: #000 !important;
}

/* Enhanced Pricing Grid */
.pricing-grid-enhanced {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem !important;
  margin: 2rem 0 !important;
}

.pricing-card-pro {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
}

.pricing-card-pro:hover {
  transform: translateY(-5px) !important;
  border-color: #ffd700 !important;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2) !important;
}

/* Add to Cart Buttons */
.add-to-cart-btn {
  width: 100% !important;
  background: linear-gradient(135deg, #4CAF50, #45a049) !important;
  color: white !important;
  border: none !important;
  padding: 1rem 2rem !important;
  border-radius: 15px !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4) !important;
  background: linear-gradient(135deg, #45a049, #4CAF50) !important;
}

.add-to-cart-btn.added {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
}

.add-to-cart-btn.added:hover {
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4) !important;
}

/* Snow Animations */
@keyframes snowfall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.3); }
}

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

.snow-particle {
  position: fixed !important;
  color: #fff !important;
  font-size: 14px !important;
  animation: snowfall linear infinite !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

/* Snow Page Responsive */
@media (max-width: 480px) {
  .hero-snow .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-snow .hero-stats {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .pricing-grid-enhanced {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .cta-buttons-hero {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* === ENHANCED FOOTER SECTION === */

/* Main Footer Container */
footer {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.95)) !important;
  color: #fff !important;
  padding: 3rem 2rem 1rem !important;
  border-top: 3px solid #ffd700 !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8) !important;
}

/* Footer Content Layout */
.footer-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
}

.footer-main {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 3rem !important;
  margin-bottom: 2rem !important;
}

/* Footer Section Headings */
.footer-info h4,
.footer-services h4,
.footer-legal h4 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3) !important;
  padding-bottom: 0.5rem !important;
}

/* Footer Info Section */
.footer-info {
  background: transparent !important;
}

.footer-info p {
  color: #ccc !important;
  background: transparent !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
}

.contact-info p {
  color: #fff !important;
  background: transparent !important;
  font-weight: 500 !important;
  margin-bottom: 0.8rem !important;
}

/* Founder Contacts */
.founder-contacts {
  background: rgba(255, 215, 0, 0.05) !important;
  border: 2px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 15px !important;
  padding: 1.5rem !important;
  margin-top: 2rem !important;
}

.founder-contacts h5 {
  color: #ffd700 !important;
  background: transparent !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
}

.founder-contacts p {
  color: #fff !important;
  background: transparent !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
}

.founder-contacts strong {
  color: #ffd700 !important;
}

/* Footer Lists */
.footer-services ul,
.footer-legal ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-services li,
.footer-legal li {
  margin-bottom: 0.8rem !important;
  color: #ccc !important;
  background: transparent !important;
  font-size: 0.95rem !important;
  position: relative !important;
  padding-left: 1rem !important;
}

.footer-services li::before,
.footer-legal li::before {
  content: '▶' !important;
  color: #ffd700 !important;
  position: absolute !important;
  left: 0 !important;
  font-size: 0.8rem !important;
}

.footer-legal a {
  color: #ccc !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid transparent !important;
}

.footer-legal a:hover {
  color: #ffd700 !important;
  border-bottom-color: #ffd700 !important;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 2px solid rgba(255, 215, 0, 0.3) !important;
  padding-top: 2rem !important;
  text-align: center !important;
  background: transparent !important;
}

.copyright p {
  color: #ccc !important;
  background: transparent !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.9rem !important;
}

.legal-notice {
  color: #aaa !important;
  background: transparent !important;
  font-size: 0.85rem !important;
  font-style: italic !important;
}

/* Footer Disclaimers */
.footer-disclaimers {
  margin-top: 1.5rem !important;
  background: rgba(255, 215, 0, 0.05) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 10px !important;
  padding: 1.5rem !important;
}

.footer-disclaimers p {
  color: #fff !important;
  background: transparent !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-align: left !important;
}

.footer-disclaimers strong {
  color: #ffd700 !important;
}

/* Footer Admin Access */
.footer-admin {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(17, 17, 17, 0.9) !important;
  border: 2px solid #ffd700 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.footer-admin:hover {
  transform: scale(1.1) rotate(5deg) !important;
  background: rgba(255, 215, 0, 0.1) !important;
  border-color: #ffed4e !important;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5) !important;
}

.footer-admin img {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  transition: transform 0.3s ease !important;
}

/* === ENHANCED WHITNEY AI CHATBOT === */

/* Chatbot Container */
.chatbot-container {
  position: fixed !important;
  bottom: 90px !important;
  right: 20px !important;
  z-index: 9998 !important;
  font-family: 'Arial', sans-serif !important;
}

/* Chat Toggle Button */
.chatbot-toggle {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  border: 3px solid #fff !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2) !important;
  animation: chatbot-pulse 2s ease-in-out infinite !important;
}

.chatbot-toggle:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4) !important;
}

@keyframes chatbot-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
  }
}

/* Chatbot Avatar */
.chatbot-avatar {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.chatbot-toggle:hover .chatbot-avatar {
  transform: scale(1.1) rotate(5deg) !important;
}

/* Notification Badge */
.notification-badge {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  background: #ff4444 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.8rem !important;
  font-weight: bold !important;
  border: 2px solid #fff !important;
  animation: badge-bounce 1.5s ease-in-out infinite !important;
}

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

/* Chat Interface */
.chat-interface {
  position: absolute !important;
  bottom: 85px !important;
  right: 0 !important;
  width: 350px !important;
  height: 500px !important;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(30, 30, 30, 0.95)) !important;
  border: 2px solid #ffd700 !important;
  border-radius: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.2) !important;
  transform: translateY(20px) scale(0.9) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.chat-interface:not(.hidden) {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  padding: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  position: relative !important;
}

.chat-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 2px solid #000 !important;
  object-fit: cover !important;
}

.chat-title h4 {
  margin: 0 !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  background: transparent !important;
}

.chat-status {
  font-size: 0.85rem !important;
  color: #333 !important;
  background: transparent !important;
}

.close-chat {
  position: absolute !important;
  top: 50% !important;
  right: 1rem !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  font-size: 1.5rem !important;
  color: #000 !important;
  cursor: pointer !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.close-chat:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-50%) scale(1.2) !important;
}

/* Chat Messages */
.chat-messages {
  flex: 1 !important;
  padding: 1rem !important;
  overflow-y: auto !important;
  background: transparent !important;
  color: #fff !important;
}

/* Chat Input */
.chat-input-container {
  padding: 1rem !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-top: 1px solid rgba(255, 215, 0, 0.3) !important;
  display: flex !important;
  gap: 0.5rem !important;
}

#chat-input {
  flex: 1 !important;
  padding: 0.8rem !important;
  background: rgba(17, 17, 17, 0.8) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}

#chat-input:focus {
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2) !important;
}

.send-button {
  padding: 0.8rem !important;
  background: #ffd700 !important;
  border: none !important;
  border-radius: 10px !important;
  color: #000 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.send-button:hover {
  background: #ffed4e !important;
  transform: scale(1.05) !important;
}

/* Chat Popup */
.chat-popup {
  position: absolute !important;
  bottom: 85px !important;
  right: 0 !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #000 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 15px !important;
  max-width: 280px !important;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4) !important;
  transform: translateY(20px) scale(0.9) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.popup-content {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.8rem !important;
}

#popup-text {
  flex: 1 !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  color: #000 !important;
  background: transparent !important;
}

.close-popup {
  background: none !important;
  border: none !important;
  font-size: 1.2rem !important;
  color: #000 !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: transform 0.3s ease !important;
}

.close-popup:hover {
  transform: scale(1.2) !important;
}

/* Responsive Footer and Chatbot */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .founder-contacts {
    margin-top: 1.5rem !important;
  }
  
  .chat-interface {
    width: 320px !important;
    height: 450px !important;
    right: 10px !important;
  }
  
  .chatbot-toggle {
    width: 60px !important;
    height: 60px !important;
  }
  
  .chatbot-avatar {
    width: 35px !important;
    height: 35px !important;
  }
}

/* === LOGIN & AUTHENTICATION PAGES === */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.login-card {
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card .logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: #000;
}

.login-title {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.login-subtitle {
  color: #ccc;
  font-size: 0.9rem;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 0.8rem;
  color: #ccc;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.tab-btn.active {
  background: #ffd700;
  color: #000;
  font-weight: bold;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.form-label {
  display: block;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
  color: #888;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  cursor: pointer;
}

.forgot-link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #ffed4e;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.alert.error {
  background: rgba(255, 68, 87, 0.2);
  border: 1px solid #ff4457;
  color: #ff9999;
}

.alert.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4CAF50;
  color: #90EE90;
}

.back-link {
  position: fixed;
  top: 2rem;
  left: 2rem;
  color: #ffd700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-link:hover {
  color: #ffed4e;
  transform: translateX(-3px);
}

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

/* Login responsive design */
@media (max-width: 768px) {
  .login-container {
    padding: 1rem;
  }
  
  .login-card {
    padding: 2rem;
    max-width: 400px;
  }
  
  .back-link {
    top: 1rem;
    left: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/* === ADMIN PANEL STYLES === */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.admin-login-form {
  max-width: 450px;
  margin: 50px auto;
  padding: 40px;
}

.login-type-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.login-type-btn {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #333;
  color: #ccc;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
}

.login-type-btn:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.login-type-btn.active {
  border-color: #ffd700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.admin-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.tab-button {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #ccc;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-button:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.tab-button.active {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 20px 0;
  animation: fadeInUp 0.3s ease;
}

.tab-content.active {
  display: block;
}

.logout-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4757;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.logout-button:hover {
  background: #ff3742;
  transform: translateY(-2px);
}

.form-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
}

.preview-container {
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(255, 215, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  min-height: 100px;
}

.effect-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.effect-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #ccc;
}

.preset-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.preset-btn {
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.preset-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

/* Admin responsive design */
@media (max-width: 768px) {
  .admin-container {
    padding: 10px;
  }
  
  .admin-tabs {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .preset-buttons {
    flex-direction: column;
  }
  
  .logout-button {
    position: static;
    margin-bottom: 20px;
    width: 100%;
  }
}

/* === DASHBOARD STYLES === */
/* Header Navigation */
.dashboard-header {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-bottom: 3px solid #ffd700;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dropdown-container {
  position: relative;
}

.dropdown-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.dropdown-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(42, 42, 42, 0.95);
  border: 2px solid #ffd700;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.dropdown-item:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.dashboard-content {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}

.dashboard-content.active {
  display: block;
}

.welcome-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.welcome-section h1 {
  color: #ffd700;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.stat-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0.5rem 0;
}

.stat-label {
  color: #ccc;
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.service-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
  margin: 0;
}

.service-status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.status-active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.contract-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.contract-table th,
.contract-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.contract-table th {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  font-weight: 600;
}

.profile-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000;
}

.profile-info h2 {
  color: #ffd700;
  margin: 0 0 0.5rem 0;
}

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

.form-group label {
  display: block;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
}

/* Dashboard responsive design */
@media (max-width: 768px) {
  .dashboard-header {
    padding: 1rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .dashboard-content {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
}

/* === LEGAL PAGE STYLES === */
.legal-page {
  min-height: 100vh;
  padding: 0;
}

.legal-hero {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  padding: 6rem 2rem 3rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-hero h1 {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  padding: 2rem 0;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.legal-nav h2 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.nav-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 1.5rem;
  color: #ffd700;
}

.legal-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.legal-section:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.legal-section h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 1rem;
}

.legal-section h3 {
  color: #ffed4e;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
}

.legal-section h4 {
  color: #ffd700;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem 0;
}

.legal-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.legal-text ul, 
.legal-text ol {
  color: #ccc;
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-text li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.legal-text strong {
  color: #ffd700;
  font-weight: 600;
}

.contact-info {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contact-info h4 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.8rem 0;
  color: #ccc;
  font-size: 1rem;
}

.contact-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

.emergency-notice {
  background: linear-gradient(135deg, rgba(255, 68, 87, 0.2), rgba(255, 68, 87, 0.1));
  border: 2px solid #ff4457;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  color: #fff;
  text-align: center;
}

.emergency-notice h4 {
  color: #ff6b7a;
  margin-bottom: 1rem;
}

.emergency-notice strong {
  color: #ff9999;
}

/* Legal responsive design */
@media (max-width: 768px) {
  .legal-hero {
    padding: 4rem 1rem 2rem;
  }
  
  .legal-hero h1 {
    font-size: 2.2rem;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .nav-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* === PAYMENT PAGE STYLES === */
.payment-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.payment-card.featured {
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.payment-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.contract-notice {
  background: rgba(255, 69, 0, 0.1);
  border: 2px solid #ff4500;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contract-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contract-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-number {
  background: #ffd700;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: #ffd700;
  transform: translateY(-2px);
}

.payment-method i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.payment-form {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: #00ff00;
  font-size: 0.9rem;
}

.invoice-system {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

/* Payment form styles */
.payment-form form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group.half-width {
  flex: 0 0 calc(50% - 0.5rem);
}

.form-group.third-width {
  flex: 0 0 calc(33.333% - 0.67rem);
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.card-section,
.transfer-section {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.transfer-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

.transfer-info p {
  margin: 0.5rem 0;
  color: #ffffff;
}

.submit-payment {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
  
  .contract-steps {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-group.half-width,
  .form-group.third-width {
    flex: 0 0 100%;
  }
}

/* === DOCUMENT MANAGEMENT STYLES === */
.documents-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-stats {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 237, 78, 0.02));
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.document-search {
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.search-controls {
  margin-top: 2rem;
}

.search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px 0 0 8px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
}

.search-btn {
  padding: 0.8rem 1.2rem;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #ffed4e;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-controls select {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
}

.document-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.document-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.document-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.doc-icon {
  font-size: 2rem;
  color: #ffd700;
}

.doc-status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.doc-status.public {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.doc-status.client {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid #2196f3;
}

.doc-status.admin {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid #9c27b0;
}

.doc-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
}

.doc-status.completed {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.doc-details {
  margin: 1rem 0;
}

.doc-details p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.doc-actions {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.doc-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.doc-btn.primary {
  background: #ffd700;
  color: #000;
}

.doc-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.doc-btn.success {
  background: #4caf50;
  color: white;
}

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

.doc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-portal {
  background: rgba(33, 150, 243, 0.05);
  border-radius: 20px;
  margin: 2rem 0;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(33, 150, 243, 0.3);
  border-radius: 15px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

.login-header {
  margin-bottom: 2rem;
}

.login-header i {
  font-size: 3rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

.login-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.upload-section {
  background: rgba(255, 193, 7, 0.05);
  border-radius: 20px;
}

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

.upload-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.upload-area {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 215, 0, 0.5);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.upload-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.upload-btn {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

#file-upload {
  display: none;
}

.upload-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 2rem;
}

.upload-info ul {
  list-style: none;
  padding: 0;
}

.upload-info li {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upload-info i {
  color: #4caf50;
}

.upload-progress {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  height: 20px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.document-categories {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-count {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

.admin-section {
  background: rgba(156, 39, 176, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.admin-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.control-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 10px;
  padding: 2rem;
}

.admin-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: #9c27b0;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.3s ease;
}

.admin-btn:hover {
  background: #7b1fa2;
}

.admin-stats {
  margin-top: 1rem;
}

.admin-stat {
  display: flex;
  justify-content: space-between;
  margin: 0.8rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.document-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .search-bar {
    flex-direction: column;
  }
  
  .search-bar input {
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  
  .search-btn {
    border-radius: 8px;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .document-grid {
    grid-template-columns: 1fr;
  }
  
  .upload-card {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .login-actions {
    flex-direction: column;
  }
  
  .doc-actions {
    flex-direction: column;
  }
}

/* === COMMUNITY PAGE STYLES === */
.community-stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 237, 78, 0.02));
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.team-section,
.projects-section,
.testimonials-section,
.community-updates,
.service-areas {
  padding: 4rem 0;
}

.team-section {
  background: rgba(255, 255, 255, 0.02);
}

.projects-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(255, 237, 78, 0.01));
}

.testimonials-section {
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.team-card h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #ffed4e;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-bio {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-contact {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 1rem;
}

.team-contact p {
  color: #ccc;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.team-contact i {
  color: #ffd700;
}

/* Project Cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  text-align: center;
}

.project-image {
  margin-bottom: 1.5rem;
}

.project-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.project-card h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.project-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.project-stats .stat {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
}

.testimonial-stars {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #ccc;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author strong {
  color: #ffd700;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #aaa;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.2rem;
}

/* Community Updates */
.updates-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.update-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
}

.update-date {
  text-align: center;
  min-width: 60px;
}

.update-date .month {
  display: block;
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: bold;
}

.update-date .day {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0.2rem;
}

.update-content h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.update-content p {
  color: #ccc;
  line-height: 1.6;
}

.admin-updates {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.admin-updates h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.editable-content {
  color: #ccc;
  line-height: 1.6;
}

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.area-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  text-align: center;
}

.area-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.area-card h3 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.area-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.area-features {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.area-features .feature {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Community CTA */
.community-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  color: #ffd700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.cta-button.secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

/* Community responsive design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .team-grid,
  .projects-grid,
  .testimonials-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .update-card {
    flex-direction: column;
    text-align: center;
  }
  
  .project-stats,
  .area-features {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 200px;
  }
}

/* === CRITICAL MISSING STYLES === */

/* Services Showcase Section */
.services-showcase {
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
}

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

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

.header-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 50px;
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-header-fancy h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffd700;
  margin-bottom: 1rem;
}

.section-header-fancy p {
  font-size: 1.1rem;
  color: #ccc;
}

.services-grid-fancy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card-fancy {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 10;
}

.service-card-fancy:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.card-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.card-icon-wrapper img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.service-card-fancy h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  color: #ccc;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li i {
  color: #ffd700;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.service-more:hover {
  background: #ffd700;
  color: #111;
}

/* Why Choose Us Section */
.why-choose-fancy {
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
}

.features-grid-fancy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card-fancy {
  background: rgba(255, 215, 0, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s ease;
}

.feature-card-fancy:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon-fancy {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.feature-card-fancy h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card-fancy p {
  color: #ccc;
  line-height: 1.6;
}

/* CTA Fancy Section */
.cta-fancy {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-content-fancy {
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.cta-fancy h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffd700;
  margin-bottom: 1rem;
}

.cta-fancy p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-buttons-fancy {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-btn-large.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #111;
}

.cta-btn-large.secondary {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 2px solid #ffd700;
}

.cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Modern Footer */
.modern-footer {
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(17,17,17,0.9));
  color: #fff;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-main {
  padding: 3rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffd700;
}

.footer-logo-section h3 {
  color: #ffd700;
  font-size: 1.3rem;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  margin: 1rem 0;
}

.footer-badge-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ffd700;
}

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

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #ffd700;
  padding-left: 0.5rem;
}

.footer-links i {
  color: #ffd700;
  width: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-person {
  padding: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-name {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-person p {
  color: #ccc;
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.contact-person a {
  color: #ffd700;
  text-decoration: none;
}

.contact-person a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.5rem 2rem;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-admin-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footer-admin-link:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #fff;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav-header .company-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-links {
  padding: 2rem 1rem;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
  padding-left: 1.5rem;
}

.mobile-nav-links i {
  color: #ffd700;
  width: 25px;
}

.mobile-nav-actions {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #111;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mobile-action-btn.secondary {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 2px solid #ffd700;
}

.mobile-action-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-actions {
    gap: 0.3rem;
  }
  
  .quote-btn span {
    display: none;
  }
  
  .services-grid-fancy,
  .features-grid-fancy {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}
