/* DALBYCO Marketing Agency - Custom Styles */
:root {
  --primary: #17313B;
  --secondary: #08537E;
  --accent: #0A6B9E;
  --light: #F5F3F3;
  --white: #FFFFFF;
  --text: #1F2937;
  --text-light: #6B7280;
}

body {
  font-family: 'Inter', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Glassmorphism Cards */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(23, 49, 59, 0.08);
}

.glass-dark {
  background: rgba(23, 49, 59, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Buttons */
.btn-primary {
  background-color: var(--primary);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

/* Section Spacing */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Nav Active */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
}

/* Service Card */
.service-card {
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Testimonial Card */
.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.01);
}

/* Case Study Card */
.case-card {
  overflow: hidden;
}

.case-card img {
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.case-card:hover img {
  transform: scale(1.08);
}

/* Form Styles */
.form-input {
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(8, 83, 126, 0.1);
  outline: none;
}

/* Disclosure */
.disclosure {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #6B7280;
}

/* Cookie Banner */
#cookie-banner {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* How it Works Steps */
.step-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(23 49 59 / 0.3);
}

/* FAQ */
.faq-question {
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-top: 0.5rem;
}

/* Stats */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Print styles for legal pages */
@media print {
  header, footer, nav, .no-print {
    display: none !important;
  }
  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
  }
}