@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

strong, p, b {
  color: inherit;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text {
  font-family: 'Oswald', sans-serif;
}

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

.navy-gradient-bg {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.copper-btn {
  background: linear-gradient(135deg, #c17f59 0%, #d4956a 100%);
  color: white;
  transition: all 0.3s ease;
}

.copper-btn:hover {
  background: linear-gradient(135deg, #d4956a 0%, #e8a87c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(193, 127, 89, 0.3);
}

.blue-accent {
  color: #00d4ff;
}

.border-copper {
  border-color: #c17f59;
}

.copper-border-bottom {
  border-bottom: 3px solid #c17f59;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: #00d4ff;
}

.service-icon {
  transition: all 0.3s ease;
}

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

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.team-photo {
  transition: all 0.3s ease;
}

.mobile-menu {
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  z-index: 9999;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00d4ff;
}

.process-step {
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.service-region-map {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  border: 2px solid #c17f59;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 50%, rgba(10, 25, 47, 0.6) 100%);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
}

@media (max-width: 768px) {
  .cookie-banner {
    max-width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@keyframes pulse-copper {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(193, 127, 89, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(193, 127, 89, 0);
  }
}

.copper-pulse {
  animation: pulse-copper 2s infinite;
}

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

.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #00d4ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.dark-section .form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.dark-section .form-input:focus {
  border-color: #00d4ff;
  outline: none;
}

.light-section .form-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0a192f;
}

.light-section .form-input:focus {
  border-color: #0a192f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

/* Tailwind opacity variants that are commonly used in the project */
.bg-gray-900\/95 {
  background-color: rgba(17, 24, 39, 0.95);
}

.bg-gray-900\/50 {
  background-color: rgba(17, 24, 39, 0.5);
}

.bg-gray-800\/50 {
  background-color: rgba(31, 41, 55, 0.5);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white\/40 {
  color: rgba(255, 255, 255, 0.4);
}

.text-white\/30 {
  color: rgba(255, 255, 255, 0.3);
}

.text-white\/20 {
  color: rgba(255, 255, 255, 0.2);
}

.text-white\/10 {
  color: rgba(255, 255, 255, 0.1);
}

.border-gray-800\/50 {
  border-color: rgba(31, 41, 55, 0.5);
}

/* Additional Tailwind opacity variants for other colors used in the project */
.bg-blue-400\/10 {
  background-color: rgba(59, 130, 246, 0.1);
}

.bg-blue-400\/20 {
  background-color: rgba(59, 130, 246, 0.2);
}

.text-blue-400 {
  color: #3b82f6;
}

.bg-red-400\/20 {
  background-color: rgba(248, 113, 113, 0.2);
}

.text-red-400 {
  color: #f87171;
}

.bg-green-500\/20 {
  background-color: rgba(34, 197, 94, 0.2);
}

.text-green-400 {
  color: #34d399;
}

.border-blue-400\/30 {
  border-color: rgba(59, 130, 246, 0.3);
}