/* ===========================
   PIXEL PUNCTUALS - MODERN DESIGN
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - Pure Black & White */
  --primary-dark: #000000;
  --primary-light: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: #ffffff;
  --muted: rgba(255, 255, 255, 0.1);
  
  /* Fonts - Modern */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-display: 'Syne', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.5s ease;
}

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

/* Custom cursor effect only on the public site — admin uses normal cursors (html.admin-root) */
@media (hover: hover) and (pointer: fine) {
  html:not(.admin-root) *,
  html:not(.admin-root) a {
    cursor: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary-dark);
  color: var(--primary-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grid Pattern Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

/* Gradient fade overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%);
  z-index: 1;
  pointer-events: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-light);
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

h2 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

html:not(.admin-root) a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--primary-light);
}

/* Remove underlines from non-page links (telephones, emails, map addresses) */
html:not(.admin-root) a[href^="tel:"],
html:not(.admin-root) a[href^="mailto:"],
html:not(.admin-root) a[href*="google.com/maps"] {
  border-bottom: none;
}

/* Prevent phone numbers from wrapping to 2 lines mid-number */
html:not(.admin-root) a[href^="tel:"] {
  white-space: nowrap;
}

html:not(.admin-root) a:hover {
  color: var(--primary-light);
  opacity: 0.7;
}

/* Anchor buttons: global <a> rules above would force white text on solid white .btn */
html:not(.admin-root) a.logo {
  color: var(--primary-light);
  border-bottom: none;
}

html:not(.admin-root) a.logo:hover {
  opacity: 0.9;
}

html:not(.admin-root) a.btn {
  border-bottom: 2px solid var(--primary-light);
}

html:not(.admin-root) a.btn-outline {
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
}

html:not(.admin-root) a.btn-secondary {
  border-bottom: 2px solid var(--border-color);
}

html:not(.admin-root) a.btn-outline:hover {
  border-bottom-color: var(--primary-light);
}

html:not(.admin-root) a.btn {
  color: var(--primary-dark);
}

html:not(.admin-root) a.btn:hover {
  opacity: 1;
  color: var(--primary-dark);
}

html:not(.admin-root) a.btn-outline {
  color: var(--primary-light);
}

html:not(.admin-root) a.btn-outline:hover {
  opacity: 1;
  color: var(--primary-dark);
}

html:not(.admin-root) a.btn-secondary {
  color: var(--primary-light);
}

html:not(.admin-root) a.btn-secondary:hover {
  opacity: 1;
  color: var(--primary-dark);
}

/* ===========================
   COMMON COMPONENTS
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  position: relative;
  z-index: 10;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  z-index: 10001;
  transition: var(--transition-normal);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.99);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-lg);
}

.logo {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: var(--transition-normal);
  position: relative;
  z-index: 3;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo svg {
  display: none;
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-2xl);
  align-items: center;
}

.nav-links a {
  color: var(--primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: var(--transition-normal);
}

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

.nav-links a.active {
  color: var(--primary-light);
}

.nav-links a.active::after {
  width: 100%;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  text-align: center;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; /* Align perfectly */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* The off-white highlight */
  transition: opacity var(--transition-normal);
  opacity: 0; /* Hidden by default */
  z-index: -1;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::before {
    opacity: 1; /* Fade in fully on hover */
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  }
}

.btn-outline {
  /* .btn uses overflow:hidden for ::before; that clips outline borders with backdrop-filter */
  overflow: visible;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: var(--primary-light);
  /* Symmetric shadow so the bottom edge is not darker/thinner than top/sides */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
    text-shadow: none;
  }
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--primary-light);
}

@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: var(--border-color);
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  }
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 0.85rem;
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: 1rem;
}

/* Section Styles */
section {
  padding: clamp(2rem, 8vw, 4rem) 0;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(255, 255, 255, 0.03) 1px,
    rgba(255, 255, 255, 0.03) 2px
  );
  pointer-events: none;
  z-index: 1;
}

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

section.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--primary-dark), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.hero-content h1 {
  margin-bottom: var(--spacing-lg);
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: var(--spacing-2xl);
  animation: slideInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  position: relative;
  z-index: 50;
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  padding: 0 var(--spacing-sm);
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.gradient-text {
  color: var(--primary-light);
}

/* Grid Layouts */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 2rem);
  margin-top: var(--spacing-2xl);
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  max-width: 100%;
}

.grid-2 > * {
  flex: 1 1 300px;
}

.grid-3 > * {
  flex: 1 1 250px;
}

.grid-4 > * {
  flex: 1 1 280px;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  justify-content: center;
}

.pricing-grid > * {
  flex: 1 1 calc(33.333% - var(--spacing-2xl));
  min-width: 300px;
  max-width: 100%;
}

/* Card Component */
.card {
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 100%;
  z-index: 10;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--primary-light);
  transition: var(--transition-normal);
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    background: var(--box-bg);
    border-color: var(--primary-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  }

  .card:hover::before {
    height: 3px;
  }
}

.card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-light);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  word-break: keep-all;
}

.card p {
  color: var(--text-secondary);
}

/* Portfolio Grid */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.portfolio-item {
  flex: 1 1 380px;
  max-width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  }
}

.portfolio-item-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  max-height: 280px;
  background: linear-gradient(145deg, var(--primary-dark) 0%, #0a0a12 100%);
  border-bottom: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-item-media {
  transform: scale(1.03);
}

.portfolio-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio-thumb-emoji {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
  user-select: none;
}

.portfolio-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
}

.portfolio-thumb-placeholder-icon {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
  opacity: 0.85;
}

.portfolio-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem;
}

/* Legacy class name kept for older markup */
.portfolio-image {
  width: 100%;
  height: 200px;
  background: var(--primary-dark);
  border-bottom: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
  background: var(--hover-bg);
}

.portfolio-content {
  padding: var(--spacing-xl);
  flex-grow: 1;
}

.portfolio-content h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-light);
}

.portfolio-content p {
  color: var(--text-secondary);
}

/* Portfolio Card (New Image-based) */
.portfolio-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  }
}

.portfolio-image-container {
  width: 100%;
  height: 250px;
  background: var(--primary-dark);
  border-bottom: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-image-container {
  transform: scale(1.05);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-image-placeholder {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.portfolio-content {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.portfolio-content h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-light);
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: auto;
}

.portfolio-content .btn {
  align-self: flex-start;
  margin-top: var(--spacing-lg);
}

/* Testimonials */
.testimonial {
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: var(--spacing-xl);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  }
}

.stars {
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.testimonial-text {
  margin-bottom: auto;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--spacing-xs);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Services Section */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-right: var(--spacing-lg);
}

/* Service Icon Containers */
.service-icon-container {
  width: 100%;
  height: 150px;
  margin-bottom: var(--spacing-lg);
  background: var(--muted);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-icon-placeholder {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

/* Team Image Containers */
.team-image-container {
  width: 150px;
  height: 150px;
  margin: 0 auto var(--spacing-lg);
  background: var(--muted);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-image-placeholder {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-light);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--box-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--primary-light);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

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

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #22c55e;
  padding: var(--spacing-lg);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  display: none;
}

.form-success.show {
  display: block;
}

.form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: var(--spacing-xs);
  display: none;
}

.form-error.show {
  display: block;
}

/* Footer */
footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--border-color);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  margin-top: var(--spacing-3xl);
  position: relative;
  z-index: 10;
}

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

.footer-section h4 {
  margin-bottom: var(--spacing-lg);
  color: var(--primary-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-md);
}

.footer-section a {
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

/* Remove underlines from textual footer links (lists and paragraphs) */
html:not(.admin-root) .footer-section ul a,
html:not(.admin-root) .footer-section p a {
  border-bottom: none;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-normal);
  color: var(--primary-light);
}

.social-links a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-dark) !important;
  opacity: 1 !important;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--border-color);
  color: var(--text-secondary);
}

.footer-bottom a {
  white-space: nowrap;
}

/* Text Effects & Utilities */
.text-glow {
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2);
}

.text-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.border-glow {
  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-light);
  transition: var(--transition-normal);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-lg);
  }

  .nav-links.active {
    display: flex;
  }

  nav .container {
    padding: 0.75rem var(--spacing-sm);
  }

  .logo span {
    font-size: 0.75rem;
  }

  .logo-img {
    height: 32px;
    max-width: 140px;
  }

  section {
    padding: clamp(1.5rem, 5vw, 2rem) 0;
  }

  .section-header {
    margin-bottom: var(--spacing-2xl);
  }

  .hero-content h1 {
    margin-bottom: var(--spacing-md);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }

  .card {
    padding: clamp(1rem, 3vw, 1.25rem);
  }

  .btn {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 0.9rem) clamp(1rem, 3vw, 1.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Interactive Star Rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.star-rating input {
  display: none;
}
.star-rating label {
  cursor: pointer;
  font-size: 2.2rem;
  color: var(--border-color);
  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f1c40f;
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}
.star-rating label:hover {
  transform: scale(1.1);
}

/* FAQ Accordion Styling */
.faq-item.active {
  border-color: rgba(255, 255, 255, 0.4);
}
.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr !important;
  opacity: 1 !important;
  padding-bottom: clamp(1rem, 3vw, 1.25rem) !important;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg) !important;
  color: var(--primary-light);
}

/* Force Process Steps to Single Line */
.process-grid {
  display: grid;
  gap: clamp(1rem, 4vw, 2rem);
  margin-top: var(--spacing-2xl);
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

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

/* Mobile Hero Logo */
.mobile-hero-logo {
  display: none;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.mobile-hero-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
  .mobile-hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -2rem auto 2rem auto;
    width: 100%;
  }
}
