/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

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

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

.btn-white:hover {
  background-color: var(--color-bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.25rem;
  box-shadow: 0 10px 40px -10px rgba(8, 104, 136, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(8, 104, 136, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(60, 166, 188, 0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all 0.6s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(8, 104, 136, 0.15);
  border-color: rgba(60, 166, 188, 0.3);
}

.service-card:hover::after {
  transform: translate(10%, -10%) scale(1.5);
  background: radial-gradient(circle, rgba(60, 166, 188, 0.15) 0%, rgba(255,255,255,0) 70%);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: white;
  border: 1px solid rgba(60, 166, 188, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
  box-shadow: 0 8px 20px -5px rgba(8, 104, 136, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  transform: translateY(-5px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 12px 25px -5px rgba(60, 166, 188, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--color-primary);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.service-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  width: fit-content;
  text-decoration: none;
  position: relative;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.service-card:hover .service-link {
  color: var(--color-accent);
  transform: translateX(5px);
}

.service-card:hover .service-link::after {
  transform: translateX(5px);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(60, 166, 188, 0.2);
}

.form-control:focus::placeholder {
  opacity: 0.8;
}

.form-control option {
  color: var(--color-text-main) !important;
  background-color: white !important;
}

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

/* Contact UI Revamp */
.contact-form {
  background: rgba(255, 255, 255, 0.06);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.15);
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
}

.contact-item strong {
  font-size: 1.05rem;
  color: white;
  transition: color 0.3s ease;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.8);
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border-color: var(--color-accent);
  transform: translateX(10px) translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(60, 166, 188, 0.2);
}

.contact-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: var(--color-accent);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(8, 104, 136, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item:hover .contact-icon-wrapper {
  background: white;
  color: var(--color-primary);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  border-color: white;
}

.contact-item:hover strong {
  color: var(--color-accent-light);
}

/* Premium Toast Notification */
.lurien-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(8, 104, 136, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1), var(--shadow-glow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  z-index: 9999;
  max-width: 420px;
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lurien-toast.hide {
  animation: toastSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.toast-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.toast-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.toast-close:hover {
  color: white;
  transform: rotate(90deg);
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%) translateY(0);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%) translateY(0);
    opacity: 0;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(8, 104, 136, 0.1);
}

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

.cookie-content {
  flex: 1;
  margin-right: 2rem;
  font-family: var(--font-body);
}

.cookie-content p {
  margin: 0;
  color: var(--color-text-main);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    gap: 1.5rem;
  }
  .cookie-content {
    margin-right: 0;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

