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

.header-area.scrolled {
  background: rgba(241, 250, 238, 0.98);
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 80px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  stroke: var(--polished-brass);
  stroke-width: 2;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--polished-brass);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--polished-brass);
  transition: width 0.3s ease;
}

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

.header-phone-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--polished-brass);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-phone-cta:hover {
  color: var(--brass-hover);
  transform: translateY(-2px);
}

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

/* Footer */
.footer-area {
  background: var(--midnight-sky);
  color: var(--parchment);
  padding: 64px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about h3 {
  color: var(--polished-brass);
  margin-bottom: 24px;
}

.footer-about p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-links h4 {
  color: var(--polished-brass);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--polished-brass);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--polished-brass);
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--starlight-blue);
  padding-top: 24px;
  text-align: center;
  color: var(--parchment);
  font-size: 0.875rem;
}

/* Cards */
.content-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-8px) perspective(1000px) rotateY(2deg);
  box-shadow: var(--shadow-heavy);
}

.service-card-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-card-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card-item:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 24px;
}

.service-card-content h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--polished-brass);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.2);
}

.primary-button:hover {
  background: var(--brass-hover);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--polished-brass);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 2px solid var(--polished-brass);
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: var(--polished-brass);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.2);
}

/* Forms */
.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--polished-brass);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

.form-success-message {
  display: none;
  background: #D4F0D4;
  color: #2D5A2D;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #4CAF50;
}

/* Cookie Banner */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight-sky);
  color: var(--parchment);
  padding: 20px 0;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--polished-brass);
  color: white;
}

.cookie-accept:hover {
  background: var(--brass-hover);
}

.cookie-decline {
  background: transparent;
  color: var(--parchment);
  border: 1px solid var(--parchment);
}

.cookie-decline:hover {
  background: var(--parchment);
  color: var(--midnight-sky);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 12px 0;
  }
  
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation.mobile-active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .content-card,
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .primary-button,
  .secondary-button {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}