/* Professional Blinds Care Website Styles */
:root {
  --primary-blue: #2563eb;
  --secondary-slate: #475569;
  --accent-amber: #f59e0b;
  --success-green: #059669;
  --warning-orange: #ea580c;
  --error-red: #dc2626;
}

/* Custom Animations */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

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

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

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

/* Professional Button Styles */
.professional-btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.professional-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
}

/* Service Card Hover Effects */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

/* Team Member Cards */
.team-card {
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gallery Hover Effects */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* Form Styling */
.form-input {
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-input:invalid {
  border-color: var(--error-red);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

/* Professional Header Shadow */
.header-shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  
  .section-title {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }
}

/* Loading Animation for Images */
.image-loading {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Success/Error Message Styles */
.message-success {
  background: #dcfce7;
  border: 1px solid #16a34a;
  color: #166534;
}

.message-error {
  background: #fef2f2;
  border: 1px solid #dc2626;
  color: #991b1b;
}