/* ==========================================================================
   IZUBA TECHNOLOGIES - DESIGN SYSTEM & STYLESHEET
   Solar-Powered Digital Craftsmanship & High-Performance Cloud Hosting
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #070A10;
  --bg-card: rgba(14, 20, 32, 0.75);
  --bg-card-hover: rgba(22, 31, 50, 0.9);
  --bg-glass: rgba(14, 20, 32, 0.6);
  --bg-input: rgba(10, 14, 24, 0.8);
  
  /* Solar Gold / Amber Radiance */
  --solar-gold: #FFB703;
  --solar-amber: #FB8500;
  --solar-light: #FFE082;
  --solar-glow: rgba(255, 183, 3, 0.35);
  --solar-glow-soft: rgba(255, 183, 3, 0.12);
  
  /* Tech Accents */
  --cyan-accent: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.25);
  --emerald-accent: #10B981;
  --purple-accent: #8B5CF6;
  
  /* Text */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(255, 183, 3, 0.4);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(255, 183, 3, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 80% 45%, rgba(0, 240, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(251, 133, 0, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Noise & Grid Overlay */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--solar-gold) 70%, var(--solar-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-solar {
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 50%, #FF5400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--solar-glow-soft);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--solar-gold);
  margin-bottom: 1.2rem;
}

.section-badge i {
  font-size: 0.9rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

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

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-solar {
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
  color: #080B10;
  box-shadow: 0 4px 20px var(--solar-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-solar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.5);
  background: linear-gradient(135deg, #FFC11E 0%, #FF9100 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

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

.btn-outline-solar {
  background: transparent;
  color: var(--solar-gold);
  border: 1px solid var(--solar-gold);
}

.btn-outline-solar:hover {
  background: var(--solar-glow-soft);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  padding: 0;
  margin: 0;
}

.brand-logo-img {
  height: 62px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 183, 3, 0.4));
  transition: transform var(--transition-fast), filter var(--transition-fast), height var(--transition-fast);
}

.navbar.scrolled .brand-logo-img {
  height: 52px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255, 183, 3, 0.7));
}

.logo-symbol {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080B10;
  box-shadow: 0 0 15px var(--solar-glow);
  position: relative;
}

.logo-symbol::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(135deg, var(--solar-gold), transparent, var(--cyan-accent));
  z-index: -1;
  opacity: 0.6;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--solar-gold);
}

.brand-tagline {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--solar-gold), var(--solar-amber));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.server-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--emerald-accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-accent);
  box-shadow: 0 0 8px var(--emerald-accent);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--text-main);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 9rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--solar-gold);
  font-family: var(--font-heading);
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual / Interactive Cloud Console */
.hero-visual {
  position: relative;
}

.terminal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--solar-glow-soft);
  overflow: hidden;
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

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

.terminal-dot.red { background: #FF5F56; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #27C93F; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.terminal-line {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.terminal-prompt {
  color: var(--solar-gold);
  font-weight: bold;
}

.terminal-cmd {
  color: var(--text-main);
}

.terminal-output {
  color: var(--text-muted);
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.terminal-output.success {
  color: var(--emerald-accent);
}

.terminal-output.highlight {
  color: var(--cyan-accent);
}

/* Floating Cloud Metric Cards */
.floating-metric-badge {
  position: absolute;
  padding: 0.8rem 1.2rem;
  background: rgba(14, 20, 32, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-top {
  top: -20px;
  right: -15px;
}

.floating-badge-bottom {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-icon.gold {
  background: var(--solar-glow-soft);
  color: var(--solar-gold);
}

.badge-icon.cyan {
  background: var(--cyan-glow);
  color: var(--cyan-accent);
}

.badge-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* Tech Stack Banner */
.tech-stack-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 14, 24, 0.5);
  overflow: hidden;
}

.tech-stack-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.tech-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-light);
  color: var(--text-main);
  transform: translateY(-2px);
}

.tech-pill-icon {
  color: var(--solar-gold);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 7rem 0;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--solar-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--solar-glow-soft);
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--solar-glow-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--solar-gold);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--solar-gold), var(--solar-amber));
  color: #080B10;
  box-shadow: 0 0 20px var(--solar-glow);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-feature-item svg {
  color: var(--solar-gold);
  flex-shrink: 0;
}

.service-action {
  margin-top: auto;
}

/* ==========================================================================
   FEATURED CASE STUDY: GO-EX TOURISM
   ========================================================================== */
.case-study-spotlight {
  padding: 7rem 0;
  position: relative;
}

.spotlight-wrapper {
  background: linear-gradient(145deg, rgba(14, 20, 32, 0.9) 0%, rgba(20, 30, 48, 0.7) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--solar-glow-soft);
  position: relative;
  overflow: hidden;
}

.spotlight-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.spotlight-info {
  position: relative;
  z-index: 2;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.spotlight-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.spotlight-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.spotlight-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.spec-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
}

.spec-box h4 {
  font-size: 1.3rem;
  color: var(--solar-gold);
  margin-bottom: 0.2rem;
}

.spec-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spotlight-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Device Preview Showcase */
.spotlight-preview {
  position: relative;
  z-index: 2;
}

.browser-mockup {
  background: #0D1117;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

.browser-bar {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  background: #161B22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.8rem;
}

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

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

.browser-address {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.browser-screen {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #000;
}

.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.browser-mockup:hover .browser-screen img {
  transform: scale(1.04);
}

.live-demo-overlay {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 0.5rem 1rem;
  background: rgba(7, 10, 16, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--solar-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
  padding: 7rem 0;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--solar-glow-soft);
  border-color: var(--border-glow);
  color: var(--solar-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--solar-glow-soft);
}

.project-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #0F1420;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}

.project-badge-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(7, 10, 16, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--solar-gold);
  backdrop-filter: blur(8px);
}

.project-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.project-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-pill {
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

/* ==========================================================================
   MANAGED HOSTING & CLOUD TIERS
   ========================================================================== */
.hosting-section {
  padding: 7rem 0;
  position: relative;
}

.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.billing-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}

.billing-label.active {
  color: var(--text-main);
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--solar-gold);
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--solar-glow);
}

input:checked + .slider {
  background-color: rgba(255, 183, 3, 0.2);
  border-color: var(--solar-gold);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.save-badge {
  padding: 0.2rem 0.6rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-accent);
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--border-glow);
  background: rgba(20, 28, 46, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px var(--solar-glow-soft);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--solar-gold), var(--solar-amber));
  color: #080B10;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--solar-glow);
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin: 1.5rem 0 0.5rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--solar-gold);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-main);
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-list li.included {
  color: var(--text-main);
}

.features-list li svg {
  flex-shrink: 0;
}

.features-list li.included svg {
  color: var(--emerald-accent);
}

.features-list li.not-included svg {
  color: var(--text-subtle);
}

/* ==========================================================================
   INTERACTIVE COST ESTIMATOR / QUOTE CALCULATOR
   ========================================================================== */
.estimator-section {
  padding: 7rem 0;
  position: relative;
}

.estimator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px var(--solar-glow-soft);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
}

.calculator-group {
  margin-bottom: 2rem;
}

.calculator-group label.group-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.calc-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}

.calc-option-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-light);
}

.calc-option-card.selected {
  background: var(--solar-glow-soft);
  border-color: var(--solar-gold);
  box-shadow: 0 0 15px var(--solar-glow-soft);
}

.calc-option-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.calc-option-card span.price-tag {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--solar-gold);
}

/* Checkbox Addons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.addon-checkbox-label input[type="checkbox"] {
  accent-color: var(--solar-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.addon-price {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--solar-gold);
}

/* Estimator Live Summary Card */
.estimator-summary {
  background: rgba(10, 14, 24, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.summary-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.summary-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breakdown-row span:last-child {
  font-family: var(--font-mono);
  color: var(--text-main);
  font-weight: 600;
}

.summary-total-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.total-amount {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--solar-gold);
  margin: 0.2rem 0;
}

.delivery-timeline {
  font-size: 0.8rem;
  color: var(--cyan-accent);
  font-family: var(--font-mono);
}

/* ==========================================================================
   COMPACT SPACE-SAVING TESTIMONIAL / REVIEW CARDS
   ========================================================================== */
.testimonials-section {
  padding: 3.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.compact-review-card,
.testimonial-card {
  background: var(--bg-card, #0E1420);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius-md, 14px);
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-normal);
  position: relative;
}

.compact-review-card:hover,
.testimonial-card:hover {
  border-color: var(--solar-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--solar-glow-soft);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.6rem;
}

.review-author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.review-author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars-pill {
  color: var(--solar-gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.review-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT & PROJECT INTAKE HUB
   ========================================================================== */
.contact-section {
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--solar-glow-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--solar-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-item-text p, .contact-item-text a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item-text a:hover {
  color: var(--solar-gold);
}

/* Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  backdrop-filter: blur(20px);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--solar-gold);
  box-shadow: 0 0 12px var(--solar-glow);
}

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

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

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  display: none;
  font-size: 0.9rem;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-accent);
  color: #34D399;
  display: block;
}

/* ==========================================================================
   MODAL DIALOG (Case Study & Project Details)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--solar-gold);
  color: #080B10;
}

.modal-body {
  padding: 2.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer,
.site-footer {
  background: #04070D;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
}

/* ==========================================================================
   STAR RATING COMPONENT (Review Form & Floating Widgets)
   ========================================================================== */
.rating-group,
.star-rating-group {
  margin-bottom: 1.25rem;
}

.rating-group label,
.star-rating-group label,
.rating-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

/* Radio-based star rating (supports Unicode stars and hover glow) */
.star-rating-box {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
}

.star-rating-box input[type="radio"] {
  display: none;
}

.star-rating-box label.star {
  font-size: 2rem;
  color: var(--text-subtle, #64748B);
  cursor: pointer;
  padding: 0.25rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}

.star-rating-box label.star:hover,
.star-rating-box label.star:hover ~ label.star,
.star-rating-box input[type="radio"]:checked ~ label.star {
  color: var(--solar-gold, #FFB703);
  text-shadow: 0 0 12px rgba(255, 183, 3, 0.45);
}

.star-rating-box label.star:hover {
  transform: scale(1.2);
}

/* Class-based interactive star rating */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  user-select: none;
}

.star-rating .star,
.star-rating .star-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-subtle, #64748B);
  cursor: pointer;
  padding: 0.25rem;
  min-width: 44px; /* Mobile touch friendly target */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.star-rating .star:hover,
.star-rating .star-btn:hover {
  transform: scale(1.2);
}

.star-rating .star.active,
.star-rating .star.hovered,
.star-rating .star-btn.active,
.star-rating .star-btn.hovered {
  color: var(--solar-gold, #FFB703);
  text-shadow: 0 0 14px rgba(255, 183, 3, 0.5);
}

.rating-feedback {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--solar-gold);
  margin-left: 0.5rem;
  display: inline-block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
  clear: both;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .spotlight-grid, .estimator-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(7, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .server-status-pill {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .spotlight-wrapper, .estimator-wrapper, .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   MAC WINDOW COMPONENT (macOS Style Browser Window)
   ========================================================================== */
.mac-window {
  background: var(--bg-card, #0E1420);
  border: 1px solid var(--border-glow, rgba(255, 183, 3, 0.35));
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 183, 3, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: block;
  position: relative;
}

.mac-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 183, 3, 0.2);
}

.mac-header {
  background: #080B12;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mac-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.mac-dot.red {
  background: #FF5F56;
  border: 1px solid #E0443E;
}

.mac-dot.yellow {
  background: #FFBD2E;
  border: 1px solid #DEA123;
}

.mac-dot.green {
  background: #27C93F;
  border: 1px solid #1AAB29;
}

.mac-address-bar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full, 9999px);
  padding: 0.25rem 1.2rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--text-muted, #94A3B8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mac-address-bar .lock-icon {
  color: var(--emerald-accent, #10B981);
}

.mac-body {
  position: relative;
  background: #000000;
  overflow: hidden;
}

.mac-body img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mac-window:hover .mac-body img {
  transform: scale(1.02);
}

/* ==========================================================================
   FLOATING WIDGETS & MODALS (WhatsApp & Review Float)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: var(--float-bottom, 24px);
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.2);
  z-index: 900;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.floating-review-btn {
  position: fixed;
  bottom: var(--float-bottom, 24px);
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  background: #0E1420;
  border: 1px solid var(--border-glow, rgba(255, 183, 3, 0.4));
  border-radius: var(--radius-full, 9999px);
  color: var(--solar-gold, #FFB703);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 183, 3, 0.2);
  z-index: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.floating-review-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #161F32;
  border-color: var(--solar-gold);
  box-shadow: 0 12px 35px rgba(255, 183, 3, 0.4);
}

/* Floating Review Form Card */
.review-float-card {
  position: fixed;
  bottom: var(--card-bottom, 80px);
  left: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: #0C121D; /* Opaque background */
  border: 1px solid var(--border-glow, rgba(255, 183, 3, 0.4));
  border-radius: var(--radius-lg, 18px);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 183, 3, 0.15);
  z-index: 950;
  display: none;
  opacity: 0;
  transform: translateY(15px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-float-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.review-float-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.review-float-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-float-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.review-float-close:hover {
  background: var(--solar-gold);
  color: #080B10;
}

.review-float-card .form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--bg-input, rgba(10, 14, 24, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm, 8px);
  color: var(--text-main);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  transition: border-color var(--transition-fast);
}

.review-float-card .form-control:focus {
  outline: none;
  border-color: var(--solar-gold);
  box-shadow: 0 0 10px var(--solar-glow-soft);
}

.review-float-card textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

/* Custom Quote Badge */
.badge-custom-quote {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: var(--solar-glow-soft);
  border: 1px solid var(--solar-gold);
  border-radius: var(--radius-full);
  color: var(--solar-gold);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Contact Page Dynamic Toggle & Discovery Form */
.form-toggle-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.form-toggle-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.form-toggle-btn.active {
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
  color: #080B10;
  box-shadow: 0 4px 15px var(--solar-glow);
}

.dynamic-form-panel {
  display: none;
}

.dynamic-form-panel.active {
  display: block;
}

.radio-pill-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.radio-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.radio-pill-label:hover {
  border-color: var(--solar-gold);
}

.radio-pill-label input[type="radio"]:checked + span {
  color: var(--solar-gold);
  font-weight: 700;
}

/* Dynamically Added Review Animation */
.new-review-highlight {
  animation: reviewSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-color: var(--solar-gold) !important;
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.25) !important;
}

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

/* ==========================================================================
   WEBSITES CREATED SHOWCASE CARDS (Mac View + Bio Card)
   ========================================================================== */
.websites-created-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.website-showcase-card {
  background: var(--bg-card, #0E1420);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.website-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--solar-gold, #FFB703);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 183, 3, 0.2);
}

.website-showcase-card.featured-card {
  border-color: var(--solar-gold);
  background: linear-gradient(180deg, rgba(20, 28, 46, 0.95) 0%, rgba(12, 18, 29, 0.95) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 183, 3, 0.15);
}

.mac-viewport-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050810;
}

.mac-viewport-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.website-showcase-card:hover .mac-viewport-container img {
  transform: scale(1.04);
}

.mac-viewport-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--solar-gold);
  z-index: 5;
}

.website-bio-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.website-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.website-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.3;
}

.website-bio-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.website-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.website-live-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
  color: #080B10;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px var(--solar-glow-soft);
}

.website-live-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--solar-glow);
  color: #080B10;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.15));
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.btn-view-details:hover {
  background: rgba(255, 183, 3, 0.12);
  border-color: var(--solar-gold);
  color: var(--solar-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.2);
}

.website-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.website-secondary-link:hover {
  color: var(--solar-gold);
}

/* ==========================================================================
   ADMIN CONTROL PANEL STYLES (admin.html)
   ========================================================================== */
.admin-page-wrapper {
  display: flex;
  min-height: 100vh;
  background: #04070D;
  color: var(--text-main);
  font-family: var(--font-main);
}

/* Admin Sidebar */
.admin-sidebar {
  width: 280px;
  background: #070B14;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  padding: 1.5rem 1rem;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0.8rem 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.admin-brand-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.2;
}

.admin-brand-tag {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--solar-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all var(--transition-fast);
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.admin-nav-item.active {
  background: var(--solar-glow-soft);
  color: var(--solar-gold);
  border: 1px solid var(--border-glow);
}

.admin-nav-item .nav-badge {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  background: rgba(255, 183, 3, 0.2);
  color: var(--solar-gold);
}

.admin-sidebar-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* Admin Main Content Area */
.admin-main {
  margin-left: 280px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-topbar {
  height: 70px;
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 400;
}

.admin-topbar-title h2 {
  font-size: 1.25rem;
  margin: 0;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-content-area {
  padding: 2rem;
  flex-grow: 1;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: block;
}

/* KPI Cards Grid */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.kpi-card {
  background: var(--bg-card, #0E1420);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 16px);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.kpi-card:hover {
  border-color: var(--solar-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.kpi-info h4 {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.kpi-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1;
}

.kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--solar-glow-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--solar-gold);
}

/* Data Tables */
.admin-card-table {
  background: var(--bg-card, #0E1420);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.table-header-bar {
  padding: 1.25rem 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.table-header-bar h3 {
  font-size: 1.15rem;
  margin: 0;
}

.admin-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-data-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.admin-data-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  vertical-align: middle;
}

.admin-data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Status Badges */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-tag.tag-new {
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: #38BDF8;
}

.status-tag.tag-approved {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
}

.status-tag.tag-pending {
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: var(--solar-gold);
}

.status-tag.tag-project {
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: var(--solar-gold);
  font-weight: 700;
}

.status-tag.tag-general {
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: #38BDF8;
  font-weight: 700;
}

/* Action Buttons */
.action-btn-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon-action {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.btn-icon-action:hover {
  background: var(--solar-gold);
  color: #080B10;
  border-color: var(--solar-gold);
}

.btn-icon-action.danger:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

.btn-icon-action.success:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}

/* Admin Modals */
.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 8, 0.88);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.admin-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.admin-modal-card {
  background: #0C121E;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg, 18px);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.admin-modal-backdrop.active .admin-modal-card {
  transform: translateY(0);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

@media (max-width: 1024px) {
  .admin-sidebar {
    width: 220px;
  }
  .admin-main {
    margin-left: 220px;
  }
}

@media (max-width: 768px) {
  .admin-sidebar {
    position: fixed;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
  }
  .admin-sidebar.open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
}

/* ==========================================================================
   MACBOOK GALLERY SLIDER CAROUSEL (Case Study Multi-Page View)
   ========================================================================== */
.mac-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 11, 16, 0.75);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.mac-nav-arrow:hover {
  background: var(--solar-gold);
  color: #080B10;
  border-color: var(--solar-gold);
  box-shadow: 0 0 20px var(--solar-glow);
  transform: translateY(-50%) scale(1.1);
}

.mac-nav-arrow.left {
  left: 1rem;
}

.mac-nav-arrow.right {
  right: 1rem;
}

.mac-dots-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  background: rgba(8, 11, 16, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mac-dot.active,
.mac-dot:hover {
  background: var(--solar-gold);
  box-shadow: 0 0 8px var(--solar-glow);
  transform: scale(1.2);
}
