/* Global Dark Theme */
body {
    background-color: #000; /* solid black */
    color: white;
}

/* Section Background */
#reception-gallery {
    background: url('background.jpg') no-repeat center center/cover;
    padding-bottom: 50px;
}

/* Album Navigation */
#album-navigation {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
}

/* Album Items */
.album-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: 0.3s ease-in-out;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

/* Hover Effects */
.album-item:hover .album-img {
    filter: brightness(100%);
}

/* Gallery Grid */
.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Images Inside Grid */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.05);
}

/* Grid Spacing */
.row.g-2 {
    gap: 10px;
}

/* Grid Layout */
@media (min-width: 992px) { /* Laptop - 4x4 Grid */
    .col-lg-3 {
        flex: 0 0 23%;
        max-width: 23%;
    }
}

@media (max-width: 768px) { /* Tablet - 2x2 Grid */
    .col-md-4 {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 576px) { /* Mobile - 2x2 Grid */
    .col-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

/* AI Theme Colors and Background Effects */
:root{
  --bg-0:#070b12;
  --bg-1:#0b1220;
  --accent-1:#00eaff;
  --accent-2:#7a5cff;
  --accent-3:#00ffa3;
  --glass:rgba(255,255,255,0.06);
  --glass-strong:rgba(255,255,255,0.10);
  --glass-border:rgba(255,255,255,0.18);
  --txt:rgba(255,255,255,0.88);
  --shadow:0 20px 60px rgba(0,0,0,0.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--txt);
  background:#000; /* solid black */
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}

/* Fullscreen background root where flashes are injected */
#bg{
  position:fixed;
  inset:0;
  overflow:hidden;
  z-index:1;
}

/* Soft vignette + grid lines for AI vibe */
#bg::before{
  content:"";
  position:absolute; inset:0;
  background: none; /* remove prior glow layers */
  mix-blend-mode:screen;
  pointer-events:none;
}
#bg::after{
  content:"";
  position:absolute; inset:0;
  background: none !important; /* remove grid/vignette */
  pointer-events:none;
}

/* The glass overlay that blurs the background below it */
.glass-overlay{
  position:fixed; inset:0; z-index:2; pointer-events:none;
  background: linear-gradient(180deg, rgba(10,14,24,0.25), rgba(10,14,24,0.35));
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.04);
}

/* Floating glassy navbar */
.nav{
  position:fixed;
  top:20px;
  left:0;
  right:0;              /* span full width */
  transform:none;       /* no centering transform */
  z-index:100;            /* keep above hero overlay */
  padding:0 16px;       /* side gutters */
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:10px 14px;
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.03));
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:16px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04) inset;
  outline:1px solid rgba(255,255,255,0.06);
  width:100%;           /* expand to device width (minus nav padding) */
  max-width:1200px;     /* keep elegant on large screens */
  margin:0 auto;        /* center within full-width nav */
  position: relative; /* anchor menu panel */
}
.nav-logo{
  height:50px;          /* +20% from 28px */
  width:auto; display:block;
  filter: drop-shadow(0 2px 8px rgba(0,234,255,0.35));
  user-select:none; -webkit-user-drag:none;
  margin-right:4px;
}
.nav-right{
  display:flex; align-items:center; gap:14px;
}

/* New: nav links and button */
.nav-link{
  color:var(--txt);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  opacity:0.9;
  padding:6px 8px;
  border-radius:10px;
  transition:color .2s ease, background-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.nav-link:hover{
  opacity:1;
  background:rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Active state for navigation links */
.nav-link.active {
  opacity: 1;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:34px; padding:0 14px; border-radius:12px;
  font-weight:600; font-size:14px; cursor:pointer; text-decoration:none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }
.btn-outline{
  color:var(--txt);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border:1px solid var(--glass-border);
  outline:1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.btn-outline:hover{
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

/* One empty section that fills viewport */
.viewport{
  position: relative;
  height: 100vh; /* Fixed height instead of 100dvh */
  z-index: 5;
  transform-style: preserve-3d;
  will-change: transform;
  display:grid; place-items:center;
  padding:80px 4vw 4vw;
}

/* Flash items (images or gradient blobs) */
.flash{
  position:fixed;
  pointer-events:none;
  z-index:1; /* under glass overlay */
  opacity:0;
  filter: saturate(112%) contrast(105%); /* subtle pop, no harshness */
  mix-blend-mode: normal; /* show photos naturally on black */
  will-change: transform, opacity;
  animation: flashFade 2600ms ease-out forwards;
}
.flash img{
  width:100%; height:100%; display:block; object-fit:cover;
  filter: blur(1px) saturate(110%);
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* Keyframes for the flash pulse */
@keyframes flashFade{
  0%{ opacity:0; transform:scale(0.92) translateZ(0); }
  16%{ opacity:1; transform:scale(1.02) translateZ(0); }
  60%{ opacity:0.85; transform:scale(1) translateZ(0); }
  100%{ opacity:0; transform:scale(1.08) translateZ(0); }
}

/* Hero glass grid overlay with vignette */
.hero-overlay{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 22px);
  background-size: auto, auto;
  animation: gridSlide 12s linear infinite;
  -webkit-backdrop-filter: blur(6px) saturate(125%);
  backdrop-filter: blur(6px) saturate(125%);
  border: 1px solid rgba(255,255,255,0.04);
}
.hero-overlay::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}
@keyframes gridSlide{
  0%{ background-position: 0 0, 0 0; }
  100%{ background-position: 0 24px, 24px 0; }
}

/* Responsive tweaks for nav and general spacing */
@media (max-width:1024px){
  .nav-inner{ padding:8px 12px; border-radius:14px; }
  .nav-logo{ height:44px; }
}
@media (max-width:640px){
  .nav-inner{ padding:8px 10px; border-radius:14px; gap:10px; }
  .nav-logo{ height:40px; }
  /* keep links visible on phones (override any previous hide) */
  .nav-right{ gap:10px; }
  .nav-link{ display:none !important; }    /* remove Home/About on phones */
  .menu-btn{ display:inline-flex; }        /* show the 3-dots button */
  .nav-right{ gap:10px; }                  /* keep compact spacing */
  .nav-link{ display:inline-flex; padding:6px 6px; font-size:12px; }
  .btn{ height:30px; padding:0 10px; font-size:12px; }
}

/* Menu button and panel for mobile */
.menu-btn{
  display:none; /* hidden by default */
  width:36px; height:36px; padding:0;
  border-radius:10px;
  border:1px solid var(--glass-border);
  outline:1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color:var(--txt);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  align-items:center; justify-content:center;
  cursor:pointer;
  margin-left:4px;
  position: relative;
}

/* Hamburger lines for menu button */
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--txt);
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn span:before,
.menu-btn span:after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--txt);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.menu-btn span:before {
  top: -5px;
}

.menu-btn span:after {
  bottom: -5px;
}

/* Active state for hamburger (X) when menu is open */
.menu-btn[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:before {
  transform: translateY(5px) rotate(90deg);
}

.menu-btn[aria-expanded="true"] span:after {
  transform: translateY(-5px) rotate(90deg);
  opacity: 0;
}

/* Dropdown menu panel */
.menu-panel{
  position:absolute; top:calc(100% + 10px); right:0;
  width:200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border:1px solid var(--glass-border);
  border-radius:14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding:8px;
  z-index:10;
}
.menu-item{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:var(--txt);
  text-decoration:none;
  font-weight:500; font-size:14px;
}
.menu-item:hover{ background: rgba(255,255,255,0.08); }

/* Raise hero text above all glass layers */
.hero-content{
  position:relative;
  z-index:11; /* ensure front-most */
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* Lexend font for hero title and subtitle */
.lexend-hero {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Hero title style without bluish glow */
.hero-title.lexend-hero {
  font-size: clamp(32px, 8vw, 86px);
  color: #eaf6ff;
  text-align: center;
  text-shadow: 0 2px 8px #0003; /* Removed colored glow, kept subtle shadow */
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hero subtitle style */
.hero-subtitle.lexend-hero {
  font-size: clamp(18px, 2.8vw, 28px);
  color: #eaf6ffcc;
  text-align: center;
  font-weight: 400;
  margin: 0 auto;
  max-width: 700px;
}

/* About section styles */
.about-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 4; /* Initially behind hero */
  background: linear-gradient(180deg, rgba(5,8,15,0.99), rgba(10,14,24,0.98));
  padding: 120px 0 80px;
  box-shadow: 0 -20px 80px rgba(0,0,0,0.8);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-title {
  font-size: clamp(28px, 5vw, 54px);
  color: #eaf6ff;
  margin-bottom: 40px;
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.feature {
  padding: 28px;
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-features {
    flex: 1;
  }
}

/* Mobile navigation styles */
@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}

/* Hamburger button */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.03));
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  outline: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--txt);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-icon:before,
.hamburger-icon:after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger-icon:before {
  top: -7px;
}

.hamburger-icon:after {
  bottom: -7px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(110deg, rgba(10,14,24,0.95), rgba(5,8,15,0.98));
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  z-index: 1000; /* Higher than navbar */
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  visibility: hidden; /* Hide completely when not active */
}

.mobile-menu.active {
  right: 0;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header .nav-logo {
  height: 28px;
}

.menu-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: var(--txt);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-close:hover {
  background: rgba(255,255,255,0.12);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  display: block;
  padding: 14px 16px;
  color: var(--txt);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-nav-item:hover {
  background: rgba(255,255,255,0.08);
}

/* Active state for mobile navigation items */
.mobile-nav-item.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--txt);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999; /* Between navbar and mobile menu */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: none; /* Ignore clicks when not active */
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Accept clicks when active */
}

/* Show hamburger on mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-inner {
    padding-right: 10px;
  }
  
  /* Hide desktop nav links on mobile */
  .desktop-only {
    display: none !important;
  }
}

/* Fix z-index stacking for scrolling sections */
.viewport {
  z-index: 5;
}

.about-section {
  z-index: 4; /* Keep below viewport but above background elements */
}

.glass-overlay {
  z-index: 2;
}

#bg {
  z-index: 1;
}

/* Pricing Page Styles */
.pricing-page {
  overflow-y: auto;
  background-color: #000;
}

.pricing-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.pricing-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(1, 158, 239, 0.4) 0%,
    rgba(0, 71, 153, 0.6) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
  filter: blur(40px);
  opacity: 0.7;
}

.pricing-grid {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
}

/* Adjust overlay for pricing page */
.pricing-page .glass-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

/* Hide the default flashes from app.js on pricing page */
.pricing-page #bg {
  display: none;
}

/* Page content */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 40px;
  position: relative;
  z-index: 5;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(1, 158, 239, 0.4);
  font-weight: 700;
}

.pricing-header .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.pricing-card {
  background: linear-gradient(to bottom, var(--glass-strong), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
  border: 1px solid #019eef;
  box-shadow: 0 20px 60px rgba(1, 158, 239, 0.15);
  transform: translateY(-8px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

/* Plan Titles */
.plan-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-title.basic {
  color: #41b0ff;
}

.plan-title.premium {
  color: #019eef;
}

.plan-title.elite {
  color: #004799;
}

/* Pricing */
.price-container {
  margin: 20px 0 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.price-period {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.price-strike {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Plan Description */
.plan-description {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  min-height: 40px;
}

/* Feature Lists */
.plan-features {
  list-style-type: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-left: 8px;
}

.plan-features li::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: #019eef;
  opacity: 0.7;
}

.highlight {
  font-weight: 600;
  color: #dbf2ff;
}

/* Pricing Buttons */
.pricing-btn {
  display: block;
  padding: 14px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
}

.pricing-btn:active {
  transform: translateY(1px);
}

.basic-btn {
  background: linear-gradient(to right, #019eef, #41b0ff);
}

.premium-btn {
  background: linear-gradient(to right, #0180cc, #019eef);
}

.elite-btn {
  background: linear-gradient(to right, #004799, #0064d6);
  color: #ffffff;
}

/* Add-ons Section */
.addon-section {
  margin-top: 80px;
  text-align: center;
}

.addon-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
}

.addon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.addon-card {
  background: linear-gradient(to bottom, var(--glass), rgba(255,255,255,0.01));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
}

.addon-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.addon-name.basic {
  color: #41b0ff;
}

.addon-name.premium {
  color: #019eef;
}

.addon-name.elite {
  color: #004799;
}

.addon-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.addon-contact {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 40px;
}

/* Footer */
.pricing-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  text-decoration: none;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #25D366;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

/* Responsive Adjustments for pricing page */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .page-content {
    padding: 100px 16px 24px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-btn {
    padding: 8px 12px;
  }
  
  .whatsapp-btn div {
    font-size: 12px;
  }
}

/* Demo Page Styles */
.demo-page {
  overflow-y: auto;
  background-color: #000;
}

/* Demo Header */
.demo-header {
  text-align: center;
  margin-bottom: 60px;
}

.demo-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(1, 158, 239, 0.4);
  font-weight: 700;
}

/* Demo Container */
.demo-container {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.demo-form-container {
  flex: 1;
  min-width: 0;
}

.demo-features {
  flex: 1;
  min-width: 0;
}

/* Form Styles */
.demo-form {
  background: linear-gradient(to bottom, var(--glass-strong), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #019eef;
  box-shadow: 0 0 0 2px rgba(1, 158, 239, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.demo-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(to right, #019eef, #0064d6);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.demo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
}

.demo-submit-btn:active {
  transform: translateY(1px);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Features list */
.features-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

.demo-feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.demo-feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: linear-gradient(to bottom, var(--glass), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
}

.feature-icon {
  font-size: 28px;
  margin-right: 16px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #41b0ff;
}

.feature-content p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.demo-testimonials {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonials-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: linear-gradient(to bottom, var(--glass), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Membership card styles */
.membership-card {
  background: linear-gradient(135deg, rgba(88, 59, 195, 0.15), rgba(36, 15, 86, 0.25));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.membership-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.membership-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.membership-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  margin: 0;
  background: linear-gradient(90deg, #9673FF, #6B46FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.membership-price {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-left: auto;
}

.membership-period {
  color: #a0a8bd;
  font-size: 0.9rem;
  margin-left: 0.5rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.membership-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e1e5ee;
  max-width: 80%;
}

.membership-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9673FF, #6B46FF);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(107, 70, 255, 0.3);
}

.membership-btn:hover {
  background: linear-gradient(135deg, #A989FF, #7E5EFF);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 70, 255, 0.4);
}

/* Updated pricing styles */
.regular-price {
  font-size: 0.9rem;
  color: #a0a8bd;
  margin-top: 0.25rem;
  font-style: italic;
}

.featured-addon {
  border: 1px solid rgba(150, 115, 255, 0.4);
  box-shadow: 0 8px 24px rgba(107, 70, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .membership-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .membership-price {
    margin-left: 0;
  }
  
  .membership-period {
    margin-left: 0;
  }
  
  .membership-desc {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .demo-container {
    flex-direction: column;
  }
  
  .demo-form-container,
  .demo-features {
    width: 100%;
  }
}
