/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Updated color palette to professional corporate colors - removed gaming-style neon accents */
:root {
  --color-black: #000000;
  --color-dark: #0a0a0a;
  --color-gray-darkest: #121212;
  --color-gray-dark: #1a1a1a;
  --color-gray: #2a2a2a;
  --color-gray-light: #3a3a3a;
  --color-silver-dark: #8a8a8a;
  --color-silver: #a0a0a0;
  --color-silver-light: #c0c0c0;
  --color-silver-bright: #e0e0e0;
  --color-white: #ffffff;
  --color-accent: #c0c0c0;
  --color-accent-hover: #d4d4d4;
  --color-gold: #b8a070;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.7;
  color: var(--color-silver-light);
  background: var(--color-black);
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Refined header with elegant corporate styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

/* Updated logo styles for new white logo without text */
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

/* Fixed logo styles with proper sizing and removed filter */
.logo-img-new {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

/* Adding smaller logo size for footer */
.footer-logo-img-new {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

/* Professional pill-style navigation without gaming effects */
.nav-menu {
  display: flex;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.6);
  padding: 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(192, 192, 192, 0.12);
}

.nav-link {
  padding: 0.75rem 1.75rem;
  color: var(--color-silver);
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(192, 192, 192, 0.08);
}

.nav-link.active {
  background: linear-gradient(135deg, #c0c0c0 0%, #d4d4d4 100%);
  color: var(--color-black);
  font-weight: 600;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-silver-light);
  transition: var(--transition);
}

.menu-overlay {
  display: none;
}

/* Elegant hero section for corporate presentation */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  overflow: hidden;
  margin-top: 80px;
}

/* Updated hero background to new mountain landscape image */
.hero-with-bg {
  background: url("public/acus-hero-background.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 2rem;
  max-width: 900px;
}

/* Professional typography without gaming gradients */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-family: var(--font-serif);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-silver-light);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Refined button styles with corporate elegance */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--color-silver-light);
  color: var(--color-black);
  border-color: var(--color-silver-light);
}

.btn-primary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-silver-light);
  border-color: var(--color-silver);
}

.btn-secondary:hover {
  background: rgba(192, 192, 192, 0.1);
  border-color: var(--color-silver-light);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Clean features section without neon effects */
.features {
  padding: 6rem 0;
  background: var(--color-dark);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(192, 192, 192, 0.1);
}

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

.feature-card {
  background: var(--color-gray-dark);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(192, 192, 192, 0.08);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 192, 192, 0.15);
}

.feature-icon-svg,
.service-icon-svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--color-silver);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-svg,
.service-card:hover .service-icon-svg {
  color: var(--color-white);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-weight: 600;
}

.feature-card p {
  color: var(--color-silver);
  line-height: 1.7;
  font-size: 1rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--color-dark);
  margin-top: 80px;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(192, 192, 192, 0.1);
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-family: var(--font-serif);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--color-silver);
  font-weight: 400;
}

/* Content Section */
.content-section {
  padding: 5rem 0;
  background: var(--color-black);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-gray-dark);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(192, 192, 192, 0.15);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 600;
}

.service-card p {
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  padding-top: 1.5rem;
}

.service-features li {
  padding: 0.6rem 0;
  color: var(--color-silver-light);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-silver);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
}

.about-content p {
  color: var(--color-silver);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--color-gray-dark);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 192, 192, 0.15);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-weight: 600;
}

.value-card p {
  color: var(--color-silver);
  line-height: 1.7;
}

/* Added styles for new about page layout with services list */
.about-content-full {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--color-silver-light);
}

.services-list {
  margin: 2rem 0 3rem;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--color-gray-dark);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 8px;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 192, 192, 0.15);
  box-shadow: var(--shadow-md);
}

.service-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.service-item p {
  color: var(--color-silver);
  line-height: 1.7;
}

.closing-statement {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-gray-dark);
  border-left: 4px solid var(--color-silver);
  border-radius: 8px; /* Corrected to 8px from 88px */
  border: 1px solid rgba(192, 192, 192, 0.08);
}

.closing-statement p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-silver);
}

.closing-statement strong {
  color: var(--color-white);
  font-weight: 600;
}

.tagline {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
  color: var(--color-white);
  font-weight: 600;
}

/* Partners Section */
.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--color-silver);
  font-size: 1.1rem;
  line-height: 1.8;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--color-gray-dark);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 192, 192, 0.15);
  box-shadow: var(--shadow-lg);
}

.partner-logo-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(192, 192, 192, 0.05);
  border-radius: 6px;
}

.partner-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-silver-light);
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
}

.partner-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 600;
}

.partner-card p {
  color: var(--color-silver);
  line-height: 1.7;
}

.partner-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem;
  background: var(--color-gray-dark);
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
}

.partner-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 700;
}

.partner-cta p {
  color: var(--color-silver);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Added matching CTA box styles for services and catalog pages */
.cta-section {
  margin-top: 5rem;
}

.cta-content,
.catalog-cta .cta-box {
  text-align: center;
  padding: 3rem;
  background: var(--color-gray-dark);
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
}

.cta-content h2,
.catalog-cta .cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 700;
}

.cta-content p,
.catalog-cta .cta-box p {
  color: var(--color-silver);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.catalog-cta {
  margin-top: 3rem;
}

/* Added gallery styles with masonry layout and wave animations */

/* Gallery Section */
.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--color-silver);
  font-size: 1.1rem;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--color-gray-dark);
  border: 1px solid rgba(192, 192, 192, 0.08);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: galleryWave 0.6s ease forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.6s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.7s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.8s;
}
.gallery-item:nth-child(10) {
  animation-delay: 0.9s;
}
.gallery-item:nth-child(11) {
  animation-delay: 1s;
}
.gallery-item:nth-child(12) {
  animation-delay: 1.1s;
}

@keyframes galleryWave {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(192, 192, 192, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.gallery-overlay p {
  color: var(--color-silver-light);
  font-size: 1rem;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 6rem;
  padding: 3.5rem 2rem;
  background: var(--color-gray-dark);
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.08);
}

.gallery-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 700;
}

.gallery-cta p {
  color: var(--color-silver);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(192, 192, 192, 0.2);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--color-white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(192, 192, 192, 0.3);
  border-color: rgba(192, 192, 192, 0.5);
  transform: scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
  border-radius: 6px;
  color: var(--color-white);
  font-size: 1.1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(192, 192, 192, 0.2);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Added centered contact info styles for simplified contact page */
.contact-info-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-center h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-weight: 700;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--color-silver);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-grid-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-white);
  font-weight: 700;
}

.contact-item {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  transition: var(--transition);
  text-align: left;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(192, 192, 192, 0.2);
  transform: translateY(-4px);
}

.contact-item h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-weight: 600;
}

/* Added contact icon sizing to 24x24 pixels */
.contact-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  margin-right: 12px;
  stroke: var(--color-silver);
  flex-shrink: 0;
}

/* Footer Styles */
.footer {
  background: var(--color-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.footer-section p {
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--color-silver);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-section a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-silver);
  text-decoration: none;
  transition: var(--transition);
}

.social-card:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.social-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  color: var(--color-silver-dark);
  font-size: 0.9rem;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.25rem;
    padding: 0.5rem;
  }
  
  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
  }
  
  .gallery-item-large {
    grid-row: span 1;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation - Hamburger Menu */
  .nav {
    padding: 1rem 0;
  }
  
  .logo-img-new {
    height: 70px;
    width: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(192, 192, 192, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
    text-align: left;
  }
  
  /* Hamburger Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
  }
  
  .hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-silver-light);
    transition: var(--transition);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Menu Overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
  
  .menu-overlay.active {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    margin-top: 70px;
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  
  /* Page Header */
  .page-header {
    padding: 6rem 0 3rem;
    margin-top: 70px;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  /* Content Section */
  .content-section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  /* Features Grid */
  .features {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
  }
  
  /* Service Item */
  .service-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .service-item svg {
    margin: 0;
  }
  
  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content h2 {
    font-size: 1.75rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-content-full h2 {
    font-size: 1.75rem;
  }
  
  .intro-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .closing-statement {
    padding: 1.5rem;
  }
  
  /* Partners Section */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partner-card {
    padding: 2rem;
  }
  
  .partner-cta {
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .partner-cta h2 {
    font-size: 1.5rem;
  }
  
  /* CTA Section */
  .cta-section {
    margin-top: 3rem;
  }
  
  .cta-content,
  .catalog-cta .cta-box {
    padding: 2rem;
  }
  
  .cta-content h2,
  .catalog-cta .cta-box h2 {
    font-size: 1.5rem;
  }
  
  /* Gallery Section */
  .gallery-intro {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item-large,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-overlay {
    padding: 1.5rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1.2rem;
  }
  
  .gallery-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
  
  .gallery-cta h2 {
    font-size: 1.5rem;
  }
  
  /* Lightbox */
  .lightbox-image {
    max-width: 95%;
    max-height: 70vh;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-caption {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    max-width: 90%;
  }
  
  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-center h2 {
    font-size: 2rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .social-card {
    justify-content: center;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
  .logo-img-new {
    height: 60px;
    width: 60px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .feature-card,
  .service-card,
  .partner-card,
  .value-card {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1.25rem;
  }
  
  .cta-content,
  .catalog-cta .cta-box,
  .partner-cta,
  .gallery-cta {
    padding: 1.5rem;
  }
}
