* {
  font-family: 'Inter', sans-serif;
}

#navbar {
  top: 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

#navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(189, 178, 164, 0.95);
}

#navbar.nav-scroll {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background-color: rgba(189, 178, 164, 0.98);
}

#top-banner {
  transition: transform 0.3s ease;
}

.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #baaea2;
  position: relative;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #baaea2 0%, #636465 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #636465;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #baaea2 0%, #9d9186 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(186, 174, 162, 0.3);
}

.service-icon svg {
  color: white;
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(186, 174, 162, 0.4);
}

.project-card {
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #636465 0%, #2c2927 100%);
}

.btn-primary {
  background: linear-gradient(135deg, #baaea2 0%, #9d9186 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(186, 174, 162, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(186, 174, 162, 0.4);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: white;
  border: 2px solid #baaea2;
  color: #636465;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: #baaea2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(186, 174, 162, 0.3);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon svg {
  transition: transform 0.3s ease;
}

.btn-icon:hover svg {
  transform: translateX(4px);
}

.text-gradient {
  background: linear-gradient(135deg, #636465 0%, #2c2927 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #baaea2 0%, #636465 100%);
  border-radius: 2px;
}

input:focus, textarea:focus, select:focus {
  border-color: #636465 !important;
  box-shadow: 0 0 0 3px rgba(99, 100, 101, 0.1);
}

.professional-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  background: white;
  border: 1px solid #f0f0f0;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 48px;
  color: #baaea2;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #baaea2;
}

.star-rating {
  color: #FFB800;
  font-size: 18px;
}

.contact-gradient {
  background: linear-gradient(135deg, #f8f7f6 0%, #f0ebe8 100%);
  position: relative;
  overflow: hidden;
}

.contact-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(186, 174, 162, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

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

.logo-filter {
  /* filter: brightness(1.1) contrast(1.1); */
}

@media (max-width: 768px) {
  .mobile-padding {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

@media (min-width: 769px) {
  .mobile-padding {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll-x {
  animation: scroll-x 30s linear infinite;
}

@media (min-width: 768px) {
  .animate-scroll-x {
    animation: none;
    justify-content: center;
  }
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Calculate exact heights for hero section */
@media (min-width: 768px) {
  .hero-height {
    height: calc(100vh - 32px - 80px); /* topbar (32px) + navbar (80px) */
  }
}