/* FILE: css/style.css */

:root {
  /* Colors - Light minimalist with white background and cool blue accents */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #0ea5e9;
  --accent-color: #06b6d4;

  --background: #ffffff;
  --surface: #f8fafc;
  --surface-dark: #f1f5f9;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Fonts */
  --font-primary: "Inter", sans-serif;
  --font-headings: "Outfit", sans-serif;

  /* Spacing */
  --nav-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Navigation */
.navbar {
  height: var(--nav-height);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  font-weight: 700;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-section h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.hero-section img {
  animation: fadeInRight 0.8s ease-out;
}

/* Service Hero */
.service-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.contact-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

/* Sections */
section {
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

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

.btn-light:hover {
  background-color: var(--surface);
  color: var(--primary-dark);
}

/* Problem Cards */
.problems-section {
  background-color: var(--background);
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.problem-card .icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-card .icon-box i {
  font-size: 1.75rem;
  color: white;
}

.problem-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* Who List */
.who-list {
  margin-top: 2rem;
}

.who-item {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.who-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.who-item span {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Approach Cards */
.approach-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.approach-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-headings);
}

.approach-card h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.approach-card p {
  color: var(--text-secondary);
  margin: 0;
}

.differentiation-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  color: white;
}

.differentiation-box h4 {
  color: white;
  margin-bottom: 1rem;
}

.differentiation-box i {
  margin-right: 0.5rem;
}

.differentiation-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin: 0 2rem;
  max-width: calc(50% - 80px);
}

.timeline-content h4 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.timeline-content p {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .timeline-icon {
    position: absolute;
    left: 0;
  }

  .timeline-content {
    margin-left: 80px;
    margin-right: 0;
    max-width: calc(100% - 80px);
  }
}

/* Result Boxes */
.result-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.result-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.result-stat {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-family: var(--font-headings);
}

.result-box p {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

/* Case Study */
.case-study {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.case-study h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.case-study .lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.case-study p {
  color: var(--text-secondary);
}

/* Forms */
.contact-form-box,
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-box-small {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

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

.form-control,
.form-select {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-headings);
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--surface);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
  background-color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-box {
  padding: 4rem 2rem;
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: var(--text-light);
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer p {
  color: var(--text-light);
}

.footer-links {
  padding: 0;
}

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

.footer-links a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: start;
}

.footer-contact i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--primary-light);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-right: 1rem;
}

.contact-info-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Thank You Page */
.thank-you-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
}

.next-steps {
  text-align: left;
  display: inline-block;
}

.next-steps h4 {
  color: var(--text-primary);
}

.next-steps ul {
  margin: 1rem 0;
}

.next-steps li {
  color: var(--text-secondary);
}

/* Legal Pages */
.legal-section {
  padding: 140px 0 80px;
  background: var(--surface);
}

.legal-section h1 {
  color: var(--text-primary);
}

.legal-section h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.legal-section ul li {
  margin-bottom: 0.5rem;
}

/* Service Page Specific */
.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-box h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-secondary);
  margin: 0;
}

.problem-solution-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.problem-icon i {
  font-size: 2rem;
  color: white;
}

.problem-solution-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.problem-solution-card p {
  color: var(--text-secondary);
  margin: 0;
}

.delivery-list {
  padding: 0;
}

.delivery-item {
  display: flex;
  align-items: start;
  margin-bottom: 2.5rem;
}

.delivery-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.delivery-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.delivery-content p {
  color: var(--text-secondary);
  margin: 0;
}

.result-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.result-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.result-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.result-card p {
  color: var(--text-secondary);
  margin: 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section,
  .service-hero,
  .contact-hero {
    padding: 120px 0 60px;
  }

  .section-title {
    font-size: 2rem;
  }

  .display-4,
  .display-5 {
    font-size: 2rem;
  }

  .timeline-content {
    margin-left: 80px;
    max-width: calc(100% - 80px);
  }
}
