/* 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: 16px 0;
}

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

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-heading);
}

.site-logo:hover {
  color: var(--accent);
}

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

.navigation-menu li a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.navigation-menu li a:hover {
  color: var(--accent);
}

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

.navigation-menu li a:hover::after,
.navigation-menu li a.active::after {
  width: 100%;
}

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navigation-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 24px;
    transition: left 0.3s ease;
    z-index: 9998;
  }
  
  .navigation-menu.active {
    left: 0;
  }
  
  .navigation-menu li a {
    font-size: 1.25rem;
    padding: 16px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-contact-info {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(202, 138, 4, 0.4);
  color: white;
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

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

.content-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-card-item {
  text-align: center;
  padding: 40px 24px;
}

.service-card-item .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card-item .card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card-item h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.service-card-item p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.team-member-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px) rotateY(5deg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.team-member-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member-card .card-content {
  padding: 24px;
}

.team-member-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.team-member-card .position {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

/* Client Testimonial */
.client-testimonial {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 4px solid var(--accent);
}

.client-testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: serif;
}

.client-testimonial blockquote {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 4px;
  color: var(--primary);
}

.author-info .company {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

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

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--bg-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.1);
}

.form-control::placeholder {
  color: var(--text-secondary);
}

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

select.form-control {
  cursor: pointer;
}

/* Footer */
.footer-area {
  background: var(--primary);
  color: white;
  padding: 60px 0 32px;
}

.footer-contact-info {
  margin-bottom: 48px;
}

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

.footer-widget h4 {
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-widget p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 16px;
  z-index: 9998;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-bottom: 2px solid var(--accent);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: white;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}