/* Header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header-area.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-area {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.main-navigation {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-navigation a:hover {
  background: var(--accent);
  color: #ffffff;
}

.header-phone-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-phone-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Mobile Header */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .main-navigation {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-phone-cta {
    display: none;
  }
}

/* Footer */
.footer-area {
  background: var(--primary);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-company-info h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-company-info p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.footer-quick-links h4,
.footer-contact-details h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-quick-links ul {
  list-style: none;
}

.footer-quick-links li {
  margin-bottom: 0.5rem;
}

.footer-quick-links a {
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.footer-quick-links a:hover {
  color: var(--accent);
}

.footer-contact-details p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.footer-contact-details a {
  color: var(--accent);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: #e0e0e0;
}

/* Cards */
.service-card-item,
.team-member-card,
.testimonial-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-item:hover,
.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-item img,
.team-member-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-price {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

/* Forms */
.contact-form-wrapper {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Cookie Banner */
.cookie-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--primary);
  color: #ffffff;
  padding: 1rem 0;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

.cookie-alert.show {
  transform: translateY(0);
}

.cookie-alert p {
  color: #ffffff;
  margin: 0;
  display: inline-block;
  margin-right: 1rem;
}

.cookie-alert .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.cookie-alert a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .cookie-alert {
    padding: 1.5rem;
  }
  
  .cookie-alert p {
    display: block;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}