/* Go Productions - Premium Black & White Design System */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 0%);
  --secondary: hsl(0, 0%, 96%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 90%);

  /* Typography */
  --font-base: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --container-padding: 1.5rem;
  --section-padding: 4rem 0;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
}

::selection {
  background: var(--foreground);
  color: var(--background);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  mix-blend-mode: difference;
}

.custom-cursor.active {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.custom-cursor-follower {
  position: fixed;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  mix-blend-mode: difference;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding: var(--section-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-gradient {
  background: linear-gradient(to right, var(--foreground), var(--muted-foreground));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.3em;
}

.tracking-wider {
  letter-spacing: 0.2em;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  height: 2.5rem;
  width: auto;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: left center;
}

header.scrolled .logo {
  height: 2rem;
  transform: scale(0.9);
}

/* Logo reveal animation */
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-reveal {
  animation: logoReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--foreground);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--foreground);
  transition: width 0.3s ease;
}

nav a.active::after,
nav a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu nav a {
  font-size: 2rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 0 2rem;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .logo {
  height: 3rem;
  filter: invert(1);
  margin-bottom: 1.5rem;
}

footer h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

footer a:hover {
  color: var(--background);
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--background);
  color: var(--foreground);
}

/* Marquee */
.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 1.5rem 0;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--foreground);
  color: var(--background);
}

.btn-primary:hover {
  background: rgba(0, 0, 0, 0.9);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--background);
  color: var(--background);
}

.btn-outline:hover {
  background: var(--background);
  color: var(--foreground);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--background);
  max-width: 1200px;
  padding: 0 var(--container-padding);
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--background);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(100%);
  }
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.project-card {
  cursor: pointer;
  transition: transform 0.5s ease;
}

.project-card:hover {
  transform: translateY(-0.5rem);
}

.project-card-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.service-card:hover {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.service-card .number {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: block;
}

.service-card:hover .number {
  color: rgba(255, 255, 255, 0.6);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CLIENT GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
  background: white;
}

.client-card {
  background: white;
  padding: 1.5rem 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.client-card:hover img {
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-author {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-base);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--foreground);
}

.form-group textarea {
  resize: none;
  min-height: 150px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--background);
  padding: 2rem;
}

.contact-info-card svg,
.contact-info-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--muted-foreground);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  position: sticky;
  top: 5rem;
  z-index: 100;
  background: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.filter-buttons {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-buttons::-webkit-scrollbar {
  height: 4px;
}

.filter-buttons::-webkit-scrollbar-thumb {
  background: var(--border);
}

.filter-btn {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--foreground);
}

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--foreground);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.logo-reveal {
  animation: logoReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Stagger delays */
.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* ===== UTILITY CLASSES ===== */
.bg-secondary {
  background: var(--secondary);
}

.bg-foreground {
  background: var(--foreground);
  color: var(--background);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-40 {
  padding-top: 10rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-card {
    padding: 1rem 0.75rem;
    min-height: 80px;
  }

  .client-card img {
    max-height: 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --section-padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .client-card {
    padding: 2rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--muted-foreground);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--foreground);
}

/* ===== TAILWIND COMPATIBILITY UTILITIES ===== */
.grid { display: grid; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

/* Grid Columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
/* Responsive Grids */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:p-12 { padding: 3rem; }
  .md\:p-24 { padding: 6rem; }
  .md\:p-32 { padding: 8rem; }
}

/* Spacing */
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-24 { gap: 6rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }

.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }

.p-8 { padding: 2rem; }
.p-16 { padding: 4rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-5xl { font-size: 3rem; }
@media (min-width: 768px) { .text-5xl { font-size: 4rem; } }

.font-light { font-weight: 300; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.25em; }
.tracking-wider { letter-spacing: 0.15em; }
.not-italic { font-style: normal; }

/* Colors & Opacity */
.bg-transparent { background-color: transparent; }
.text-gray-300 { color: #d1d5db; }
.text-green-800 { color: #166534; }
.text-red-800 { color: #991b1b; }
.bg-green-100 { background-color: #dcfce7; }
.bg-red-100 { background-color: #fee2e2; }
.opacity-70 { opacity: 0.7; }
.hover\:text-muted-foreground:hover { color: var(--muted-foreground); }

/* Borders */
.border-b { border-bottom-width: 1px; }
.border-gray-300 { border-color: #d1d5db; }
.rounded-lg { border-radius: 0.5rem; }
.rounded { border-radius: 0.25rem; }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-black:focus { border-color: #000; }

/* Max Widths */
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Image Effects */
.object-cover { object-fit: cover; }
.grayscale { filter: grayscale(100%); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-700 { transition-duration: 700ms; }

/* Space Utilities */
.space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(1rem * var(--tw-space-y-reverse)); }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(2rem * var(--tw-space-y-reverse)); }

/* Aspect Ratio Fallback */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }



/* ===== MOBILE MENU DARK MODE & UTILITIES FIX ===== */
.mobile-menu {
  background: var(--foreground) !important;
  color: var(--background) !important;
}

.mobile-menu nav a {
  color: var(--background) !important;
}

.mobile-menu .close-btn {
  color: var(--background) !important;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Ensure dynamic content in About page wraps correctly */
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* Contact Map Fix */
.contact-map-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.contact-map-container:hover {
  filter: grayscale(0%);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact Form Styling Fix */
.contact-form .form-group label {
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-bottom: 1px solid #e5e5e5 !important;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--foreground);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--foreground) !important;
}

/* Mobile Responsiveness for Sidebar/Nav */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide default nav */
  }
}



/* ===== MOBILE MENU FIXED STYLING ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #000 !important; /* Force Black Background */
  z-index: 9999;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex !important;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu nav a {
  font-size: 2rem;
  font-weight: 300;
  color: #fff !important; /* Force White Text */
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu.active nav a {
  opacity: 1;
  transform: translateY(0);
}

/* Close Button Styling */
.mobile-menu .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff !important;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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


/* ===== FIX MOBILE CLOSE BUTTON SIZE ===== */
.mobile-menu .close-btn {
  font-size: 2rem !important; /* Reduced from 3rem */
  width: 40px !important;    /* Reduced from 50px */
  height: 40px !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
}

/* ===== FIX CONTACT MAP OVERLAP ===== */
.contact-map-container {
  height: 500px !important;
  width: 100% !important;
  position: relative !important;
  margin-bottom: 0 !important; /* Ensure no negative margin */
  display: block;
  clear: both; /* Clear floats just in case */
}

main {
  padding-bottom: 0 !important; /* Remove bottom padding from main to let map sit flush if needed, or keep it */
  overflow: hidden; /* Contain floats/margins */
}


/* ===== MOBILE CLIENTS GRID FIX ===== */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columns on mobile */
    gap: 1rem !important;
  }
  
  .client-card {
    padding: 1rem;
    min-height: 80px;
  }
  
  .client-card img {
    max-height: 40px;
  }
}

