@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Open+Sans:wght@300;400;500;600&display=swap');
/* Shalender Art Studio - Dark Theme Styles */

:root {
  --color-bg: #1f1f22;
  --color-surface: #0b0b0b;
  --color-text: #e8e8ea;
  --color-muted: #b0b3b8;
  --color-accent: #7dd3fc; /* sky-300 */
  --color-accent-2: #a78bfa; /* violet-400 */
  --cta-color: #FFD700; /* yellow */
  /* grey-tinted glass */
  --glass-bg: rgba(36, 38, 42, 0.695);
  --glass-border: rgba(255, 255, 255, 0.14);
  /* header height hint for overlapping hero */
  --header-h: 56px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--color-bg);
  background-color: #070000;
  color: var(--color-text);
  line-height: 1.6;
  text-align: center; /* center all text globally */
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Ensure header/navigation consistently uses Montserrat on all pages */
.site-header,
.site-header .brand span,
.site-header .nav-links a {
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Layout helpers */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Mobile container padding */
@media (max-width: 768px) {
  .container {
    width: min(95%, 600px);
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 98%;
    padding: 0 20px;
  }
}

/* Glassy Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--glass-bg) 85%, transparent);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  transition: background-color 0.25s ease, border-color 0.25s ease,
    backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: color-mix(in oklab, var(--color-surface) 92%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* remove any residual padding inside the header on Services page */
.services-page header.site-header .container.nav {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Remove header padding on Services pages */
.services-page .nav { padding: 12px 0 !important; }

/* Ensure Services page header uses the same font as Home */
/* no special header font on services to prevent flash; inherit global */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-logo {
  width: 45px;
  height: 45px;
  border-radius: 0px;
  object-fit: contain;
  max-width: none; /* keep icon size fixed */
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.nav-links a:hover {
  color: #FFD700;
}

/* Active page indicator in header */
.nav-links a.is-active {
  color: #FFD700;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Optional: soften underline on CTA but keep color */
.nav-links a.btn-cta.is-active {
  text-decoration: none;
  box-shadow: 0 0 16px color-mix(in oklab, var(--cta-color) 75%, transparent),
              0 0 34px color-mix(in oklab, var(--cta-color) 45%, transparent);
}

/* Nav CTA Button */
.nav-links a.btn-cta {
  position: relative;
  background: var(--cta-color); /* yellow background by default */
  color: black; /* black text always */
  text-transform: none; /* keep 'Contact' as written */
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 0 10px color-mix(in oklab, var(--cta-color) 55%, transparent),
              0 0 26px color-mix(in oklab, var(--cta-color) 35%, transparent);
  transition: transform 0.15s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-links a.btn-cta:hover {
  transform: translateY(-1px);
  background: white; /* background turns white */
  color: black; /* keep black text */
  box-shadow: 0 0 16px color-mix(in oklab, var(--cta-color) 75%, transparent),
              0 0 34px color-mix(in oklab, var(--cta-color) 45%, transparent),
              0 0 60px color-mix(in oklab, var(--cta-color) 30%, transparent); /* yellow glow stays */
}

.nav-links a.btn-cta:active {
  transform: translateY(0);
}

.nav-links a.btn-cta:active { transform: translateY(0); }

.nav-links a.btn-cta:active { transform: translateY(0); }

/* Collage */
.collage {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.collage .tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #2a2d33;
  height: 180px;
}

.collage .tile.large {
  grid-column: span 2;
  height: 240px;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

@media (max-width: 900px) {
  .collage { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .collage { grid-template-columns: repeat(2, 1fr); }
  .collage .tile.large { grid-column: span 2; height: 200px; }
}

/* Hero full-width slideshow */
.hero {
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: min(120vh, 700px);
  background: #0f1115;
  /* pull the hero behind the glassy header */
  margin-top: calc(var(--header-h) * -1);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.03);
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}

.hero-slide img.is-active {
  opacity: 1;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
  .hero-slide {
    height: min(70vh, 500px); /* Reduce height on mobile */
  }
  
  .hero-slide img {
    object-fit: contain; /* Show full image without cropping */
    object-position: center;
    background: #0f1115; /* Fill any gaps with dark background */
  }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .hero-slide {
    height: min(60vh, 400px); /* Further reduce height on very small screens */
  }
}

.hero-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none; /* allow clicks only on buttons */
}

.hero-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: color-mix(in oklab, rgba(0,0,0,0.55) 60%, transparent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease;
}

.hero-btn:hover {
  transform: scale(1.06);
  border-color: #fff;
  background: rgba(0,0,0,0.5);
}

.hero-prev { margin-left: 4px; }
.hero-next { margin-right: 4px; }

/* Mobile hero controls */
@media (max-width: 768px) {
  .hero-controls {
    padding: 0 8px;
  }
  
  .hero-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.6);
  }
  
  .hero-btn:hover {
    transform: scale(1.02);
    background: rgba(0,0,0,0.8);
  }
  
  .hero-prev { margin-left: 2px; }
  .hero-next { margin-right: 2px; }
}

/* Welcome Section */
.welcome {
  margin: 36px auto 14px auto;
  text-align: center;
  max-width: 900px;
}

/* Mobile welcome section padding */
@media (max-width: 768px) {
  .welcome {
    margin: 25px auto 10px auto;
    padding: 0 20px;
  }
  
  .welcome h1 {
    font-size: 1.6rem;
    margin: 0 0 12px 0;
  }
  
  .welcome p {
    padding: 0 10px;
    font-size: 0.95rem;
  }
}

.welcome h1 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  font-weight: 800;
}

.welcome p {
  margin: 0 auto;
  color: var(--color-muted);
  max-width: 800px;
}

/* Services Page */
.services-page {
  background: #111;
  color: #fff;
  /* inherit global font to avoid FOUT and extra font payload */
  /* font-family: inherit; */
}

.services-page main.container { padding-top: 20px; padding-bottom: 32px; }

.service-tabs {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 0 8px 0;
}

.service-tab {
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  transition: transform 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.service-tab:hover {
  color: #FFD700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: scale(1.04);
}

/* Active service tab styling */
.service-tab.active {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
}

.clients-section {
  margin-top: 22px;
}

.clients-section h2 {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  margin: 8px 0 14px 0;
  text-align: center;
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px);
  justify-content: center;
  gap: 2px;
}

.client-card { width: 180px; }
.client-thumb {
  width: 180px;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  background: #222;
}

.client-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-name {
  text-align: center;
  margin: 6px 0 10px 0;
  color: #ddd;
  font-size: 0.95rem;
}

/* Artistic service branches */
.service-branches { 
  margin-top: 18px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.service-branches svg { 
  width: min(1200px, 100%); 
  height: auto; 
  display: block; 
  margin: 0 auto;
  max-width: 100%;
  border: 2px solid transparent; /* Add border to force re-render */
}
.service-branches .branch { display: none; }
.service-branches .branch.shadow { display: none; }
/* New tree diagram styles */
.services-title {
  text-align: center;
  margin: 0 0 8px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-tree { 
  margin: 6px auto 0 auto !important; 
  display: block !important;
  width: 100% !important;
  max-width: 1200px !important;
}
.tree-line {
  stroke: #f1fb64; /* simple cyan tone, no glow */
  stroke-width: 2.2;
  fill: none;
}
.tree-node rect {
  fill: rgba(255,255,255,0.02);
  stroke: #8ad1ff;
  stroke-width: 1.4;
}
.tree-node.small rect { stroke-width: 1.2; }
.tree-label {
  font-family: Arial, Helvetica, sans-serif; /* readability on nodes */
  font-size: 14px;
  fill: #E0E0E0;
}
/* Hover effects for all tree nodes except the main Services node */
.tree-node:hover rect { stroke: #FFD700; }
.tree-node:hover .tree-label { fill: #ffffff; }

/* Remove hover effects from the main Services node */
.main-services-node:hover rect { 
  stroke: #8ad1ff !important; 
}
.main-services-node:hover .tree-label { 
  fill: #E0E0E0 !important; 
}

/* Ensure main services node is not clickable/interactive */
.main-services-node {
  cursor: default;
}

/* Mobile fallback list */
.tree-sublist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 6px 0 10px 0; }
.tree-sublist span {
  display: inline-block; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(0,255,255,0.5); color: #dfefff; font-size: 0.85rem;
}
/* Responsive breakpoints for services chart */
@media (max-width: 1400px) {
  .service-branches svg { 
    width: min(1000px, 95%); 
  }
}

@media (max-width: 1200px) {
  .service-branches svg { 
    width: min(900px, 92%); 
  }
  .service-branches {
    padding: 0 15px;
  }
}

@media (max-width: 1000px) {
  .service-branches svg { 
    width: min(800px, 90%); 
  }
}

@media (max-width: 860px) {
  .service-tree { display: none; }
  .tree-sublist { grid-template-columns: 1fr; }
  .service-branches {
    padding: 0 10px;
  }
}

/* Contact Page Styles */
.contact-main {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 20px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-header p {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
  max-height: 70vh;
  overflow: visible;
}

/* Left Column - Company Info */
.contact-info {
  padding: 24px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  height: fit-content;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.contact-info .tagline {
  font-size: 0.95rem;
  color: #FFD700;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.8;
}

.info-section {
  margin-bottom: 20px;
}

.info-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-section p {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.info-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-section a:hover {
  color: #FFD700;
}

/* Right Column - Contact Form */
.contact-form-container {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.contact-form-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: #000;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Form Status Messages */
.form-status {
  margin-top: 12px;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.form-status.error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.form-status.sending {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Social Media Section */
.social-media-section {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
}

.social-media-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.social-media-section p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 100px;
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.social-link:hover img {
  filter: brightness(1.1);
}

.social-link span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.social-link:hover span {
  color: #FFD700;
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  clear: both;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 1025px) {
  .contact-content {
    margin-bottom: 80px;
  }
  
  .social-media-section {
    margin-top: 100px;
  }
  
  .faq-section {
    margin-top: 80px;
  }
}

@media (max-width: 1024px) {
  .contact-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 30px;
  }
  
  .social-media-section {
    margin-top: 60px;
  }
  
  .social-links {
    gap: 20px;
  }
  
  .faq-section {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 20px 0;
    min-height: auto; /* Remove fixed height on mobile */
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    max-height: none; /* Remove height restriction on mobile */
  }
  
  .contact-header {
    margin-bottom: 20px;
  }
  
  .contact-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .contact-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    max-height: none;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 16px;
    margin: 0 10px;
    height: auto; /* Allow natural height on mobile */
    min-height: auto; /* Remove minimum height constraint */
  }
  
  .contact-info h2 {
    font-size: 1.4rem;
  }
  
  .contact-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  /* Hide tagline on mobile to reduce height */
  .contact-info .tagline {
    display: none;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .social-media-section {
    margin-top: 40px;
    padding: 30px 0;
  }
  
  .social-media-section h2 {
    font-size: 1.6rem;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-link {
    padding: 15px;
    min-width: 80px;
  }
  
  .social-link img {
    width: 35px;
    height: 35px;
  }
  
  .faq-section {
    margin-top: 40px;
    padding-top: 20px;
  }
  
  .faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .faq-item {
    padding: 16px;
    margin: 0 10px;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .contact-main {
    padding: 10px 0;
    min-height: auto; /* Remove fixed height on very small screens */
  }
  
  .contact-content {
    /* gap: 15px; */
    margin-bottom: 25px;
    max-height: none; /* Ensure no height restriction */
  }
  
  .contact-info,
  .contact-form-container {
    padding: 12px;
    margin: 0 5px;
    height: auto; /* Natural height on small mobile */
    min-height: auto; /* No minimum height */
  }
  
  /* Hide tagline on small mobile to reduce height */
  .contact-info .tagline {
    display: none;
  }
  
  .contact-header {
    margin-bottom: 15px;
  }
  
  .contact-header p {
    font-size: 0.85rem;
    padding: 0 5px;
  }
  
  .contact-content {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 12px;
    margin: 0 5px;
  }
  
  .contact-info h2 {
    font-size: 1.2rem;
  }
  
  .contact-form-container h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .info-section {
    margin-bottom: 15px;
  }
  
  .info-section h3 {
    font-size: 0.85rem;
  }
  
  .info-section p {
    font-size: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .submit-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .social-media-section {
    margin-top: 25px;
    padding: 20px 0;
  }
  
  .social-media-section h2 {
    font-size: 1.3rem;
  }
  
  .social-media-section p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    padding: 12px;
    min-width: 70px;
  }
  
  .social-link img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }
  
  .social-link span {
    font-size: 0.8rem;
  }
  
  .faq-section {
    margin-top: 30px;
  }
  
  .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .faq-item {
    padding: 12px;
    margin: 0 5px;
  }
  
  .faq-item h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .faq-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Footer Social Media */
.footer-social {
  margin-top: 20px;
  text-align: center;
}

.footer-social h4 {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: center;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-social-links a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.footer-social-links a:hover img {
  filter: brightness(1.1);
}

/* Responsive footer social */
@media (max-width: 768px) {
  .footer-social h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .footer-social-links {
    gap: 8px;
  }
  
  .footer-social-links img {
    width: 20px;
    height: 20px;
  }
}

/* Achievement statement */
.achievement { margin: 18px 0 8px 0; text-align: center; }
.achievement .line {
  font-family: Arial, Helvetica, sans-serif; /* normal site font for paragraphs */
  color: #E0E0E0;
  text-shadow: none;
  font-weight: 200;
  text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 8px auto;
}
.neon-divider {
  height: 1px; border: 0; margin: 14px auto; width: min(880px, 90%);
  margin: 30px;
  background: linear-gradient(90deg, transparent, #FFD700, #FFD700 50%, #FFD700 65%, transparent);
}

/* Capabilities style accents */
.service-branches .spine { stroke: #2e3a40; stroke-width: 2; stroke-linecap: round; }
.service-branches .tick { stroke: #2e3a40; stroke-width: 2; stroke-linecap: round; }
.service-branches .title-script {
  font-family: 'Satisfy', cursive;
  font-size: 30px;
  fill: #7dd3fc;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.5));
}
.service-branches a.script-link { font-size: 28px; fill: #d9c6a1; text-decoration: none; transition: fill 0.2s ease, transform 0.2s ease; }
.service-branches a.script-link:hover { fill: #FFD700; }

/* Mobile fallback: stack nodes */
.service-stack { display: none; margin-top: 12px; }

/* Ensure service tabs stay horizontal on all mobile sizes */
@media (max-width: 480px) {
  .service-tabs {
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0 5px 0;
  }
  .service-tab {
    font-size: 0.8rem;
    padding: 5px 8px;
    border-radius: 8px;
  }
  
  /* Mobile active tab styling */
  .service-tab.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
  }
}
.service-stack a {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  padding: 10px 12px;
  margin: 6px 0;
  border-radius: 10px;
  background: #1b1b1b;
  transition: transform 0.2s ease, color 0.2s ease;
}
.service-stack a:hover { color: #FFD700; text-decoration: underline; transform: scale(1.03); }

@media (max-width: 640px) {
  .service-tabs { 
    flex-direction: row; 
    gap: 8px; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-tab {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  /* Medium mobile active tab styling */
  .service-tab.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 9px rgba(255, 215, 0, 0.22);
  }
  
  .clients-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 2px; }
  .client-card, .client-thumb { width: 100%; }
  .service-branches svg { display: none; }
  .service-stack { display: block; }
}

/* Clients split layout: names left, collage right */
.clients-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

/* Gallery page */
.gallery-page { padding: 20px 0 3px; font-family: 'Open Sans', Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; }
.gallery-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 10px 0 14px; }
.gallery-left { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-right { display: flex; gap: 8px; align-items: center; }

.gallery-quick,
.gallery-pagination button,
#gallery-more {
  background: #111; /* dark select background */
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gallery-quick:hover,
.gallery-pagination button:hover { color: #ffd700; border-color: rgba(255,255,255,0.35); }

/* Dark dropdown options where supported */
#gallery-more option { background: #111; color: #f5f5f5; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* 3–4 per row on desktop */
  gap: 20px; /* airy spacing */
  align-items: start;
}

/* Uniform dark cards */
.gallery-item {
  background: transparent; /* remove boxy background */
  border: none; /* no thick borders */
  color: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 360px; /* larger thumbnails */
  transform: translateZ(0);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-thumb {
  position: relative;
  width: 100%;
  height: 300px; /* larger viewing area */
  background: #111; /* clean dark stage */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45); /* subtle depth */
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full artwork without cropping */
  object-position: center; /* center horizontally and vertically */
  display: block;
}

/* Hover/tap overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f5f5f5;
  transition: opacity 0.25s ease;
}

.gallery-overlay { display: none !important; }

.ov-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.ov-cta {
  font-size: 0.85rem;
  color: #ffcc33;
  letter-spacing: 0.02em;
}

.gallery-item .cap {
  height: 48px;
  padding: 6px 4px 0 4px;
  color: #f5f5f5;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-pagination { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }

@media (max-width: 640px) {
  .gallery-header { flex-direction: column; align-items: stretch; gap: 10px; }
  .gallery-right { justify-content: flex-end; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; } /* 1–2 per row on small screens */
  .gallery-item { height: 270px; }
  .gallery-thumb { height: 220px; }
}

/* Lightbox (fullscreen) adjustments */
.image-modal.lightbox .modal-content {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.image-modal.lightbox .modal-image-container {
  max-width: 92vw;
  max-height: 82vh;
  display: grid;
  place-items: center;
}

.image-modal.lightbox #modal-image {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  object-position: center;
}

.image-modal.lightbox .modal-controls { display: none; }

.image-modal.lightbox .modal-caption {
  text-align: center;
  color: #f5f5f5;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin: 10px 0 6px 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.client-names {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
}

.client-names h3 {
  margin: 4px 0 10px 0;
  font-family: 'Montserrat', sans-serif;
}

.client-names ul { list-style: none; margin: 0; padding: 0; }
.client-names li { padding: 6px 0; color: #ddd; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.client-names li:last-child { border-bottom: none; }

.client-collage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-rows: 120px;
  gap: 4px;
  justify-content: start;
  align-content: start;
}

.client-collage .tile { position: relative; overflow: hidden; border-radius: 8px; background: #1b1b1b; }
.client-collage .tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.client-collage .tile.wide { grid-column: span 2; }
.client-collage .tile.tall { grid-row: span 2; }
.client-collage .tile.big { grid-column: span 2; grid-row: span 2; }

@media (max-width: 860px) {
  .clients-split { grid-template-columns: 1fr; }
  .client-collage { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); grid-auto-rows: 90px; }
}

/* Intro split section */
.intro {
  margin: 26px auto 40px auto;
  display: grid;
  grid-template-columns: 200px min(720px, 80vw);
  gap: 22px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: fit-content;
}

.slideshow-frame {
  width: 180px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  background: #2a2d33;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) inset;
  margin: 0 auto;
}

.slideshow-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro .text {
  color: var(--color-muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro .text strong,
.intro .text b {
  color: var(--color-text);
}

/* About page */
.about-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: left;
}

/* Mobile about section padding */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .about-section h1,
  .about-section h2,
  .about-section p,
  .about-section ul {
    padding: 0 5px;
  }
}
.media-covers {
  margin-top: 22px;
  font-size: 2rem;
  font-weight: 400;
  color: #eee0bc;
  text-align: center;
}
.about-section h1 {
  margin: 0 0 16px 0;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  color: #eee0bc;
  text-align: left;
}

.about-section h2 {
  color: #eee0bc;
  margin-top: 22px;
  font-weight: 200;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.about-section p { color: var(--color-muted); }

.about-section ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.about-section li { margin: 6px 0; }

/* Film reel marquee */
.film-reel {
  overflow: hidden;
  background: #000;
  padding: 20px 0;
}

.film-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
  animation: reel-marquee 20s linear infinite;
}

/* Right-to-left twin (moves content from left to right) */
.film-strip.reverse {
  animation: reel-marquee-right 20s linear infinite;
}

.film-strip img {
  height: clamp(90px, 22vw, 200px);
  width: auto;
  flex: 0 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  background: #000;
}

@keyframes reel-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes reel-marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 640px) {
  .film-strip { gap: 10px; }
}

/* Footer */
footer.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 36px;
  padding: 40px 0 24px 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: contain;
  /* background: #2a2d33; */
  max-width: none; /* keep icon/logo size fixed */
  flex: 0 0 auto;
}

.footer-brand .title { font-weight: 800; }
.footer-brand .tagline { color: #ffd700; margin-top: 4px; }
.footer-brand .desc { color: var(--color-muted); margin-top: 10px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
  justify-items: center;
}

.footer-col h4 {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 8px 0; color: var(--color-muted); }
.footer-col a { color: var(--color-muted); transition: color 0.2s ease; }
.footer-col a:hover { color: #FFD700; }

.contact-line { display: flex; gap: 10px; align-items: start; color: var(--color-muted); justify-content: center; }

.footer-bottom {
  border-top: 1px dashed var(--glass-border);
  padding: 16px 0 28px 0;
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-template-columns: 48px 1fr; }
  /* make footer lists 2 columns on tablets */
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .intro { 
    grid-template-columns: 1fr; 
    justify-items: center;
    margin: 20px auto 30px auto;
    padding: 0 20px;
  }
  
  .intro .text {
    padding: 0 15px;
    max-width: 100%;
  }
  
  /* Compact footer brand for mobile */
  .footer-brand { 
    grid-template-columns: 1fr; 
    justify-items: center; 
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-brand img {
    width: 48px;
    height: 48px;
  }
  
  .footer-brand .desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Three columns: Quick Links, Services, Follow Us (hide Contact on mobile) */
  .footer-cols { 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 15px 20px;
    text-align: center;
  }
  
  /* Hide Contact section on mobile phones */
  .footer-col:nth-child(3) {
    display: none;
  }
  
  /* Make all sections more compact */
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .footer-col li {
    margin: 6px 0;
    font-size: 0.9rem;
  }
  
  /* Follow Us section takes normal column space */
  .footer-col:last-child {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  /* Even more compact on very small screens */
  .footer-inner {
    padding: 20px 0 16px 0;
  }
  
  /* Extra small mobile text padding */
  .intro {
    padding: 0 25px;
    margin: 15px auto 25px auto;
  }
  
  .intro .text {
    padding: 0 10px;
    text-align: left;
  }
  
  .welcome {
    padding: 0 25px;
    margin: 20px auto 8px auto;
  }
  
  .welcome p {
    padding: 0 15px;
    font-size: 0.9rem;
  }
  
  .about-section {
    padding: 30px 30px;
    margin: 0 5px;
  }
  
  .about-section h1,
  .about-section h2,
  .about-section p,
  .about-section ul {
    padding: 0 8px;
  }
  
  .footer-brand {
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    width: 40px;
    height: 40px;
  }
  
  .footer-brand .title {
    font-size: 1rem;
  }
  
  .footer-brand .desc {
    font-size: 0.85rem;
    margin-top: 6px;
  }
  
  /* Keep Quick Links, Services, and Follow Us in grid on small screens */
  .footer-cols { 
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    margin-bottom: 15px;
  }
  
  /* Keep Contact section hidden on mobile */
  .footer-col:nth-child(3) {
    display: none;
  }
  
  /* Follow Us spans across if needed */
  .footer-col:last-child {
    grid-column: auto;
    margin-top: 0;
  }
  
  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .footer-col li {
    margin: 4px 0;
    font-size: 0.85rem;
  }
  
  .contact-line {
    font-size: 0.85rem;
    margin: 3px 0;
  }
  
  .footer-bottom {
    padding: 12px 0 20px 0;
    font-size: 0.8rem;
  }
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-image-container {
  position: relative;
  overflow: auto;
  max-width: 90vw;
  max-height: 80vh;
}

#modal-image {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.modal-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
}

.modal-controls button {
  padding: 8px 16px;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.modal-controls button:hover {
  background: #555;
}

.modal-controls .zoom-reset {
  background: #666;
}

.modal-controls .zoom-reset:hover {
  background: #888;
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px 20px 20px;
  gap: 20px;
}

.mobile-nav a {
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  min-width: 200px;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
  transform: translateY(-2px);
}

.mobile-nav a.is-active {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  color: #FFD700;
}

/* Mobile navigation layout */
@media (max-width: 768px) {
  .nav {
    padding: 8px 0;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Adjust brand for mobile */
  .brand {
    gap: 8px;
  }
  
  .brand span {
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  
  /* Reduce header height on mobile */
  :root { --header-h: 56px; }
}

/* Larger mobile devices - show hamburger menu but keep it compact */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    padding: 10px 0;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  
  .nav-links a.btn-cta {
    padding: 6px 12px;
  }
}

/* Desktop - hide mobile elements */
@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-nav-overlay {
    display: none !important;
  }
}
