/* FILE: css/style.css */

:root {
  /* Dark theme with bluish-charcoal background and copper accents */
  --bg-primary: #1a1f2e;
  --bg-secondary: #232937;
  --bg-darker: #141824;
  --bg-card: #2a3142;

  /* Copper accent colors */
  --accent-primary: #c87941;
  --accent-secondary: #b56a36;
  --accent-light: #e09a64;
  --accent-dark: #a45b2f;

  /* Text colors */
  --text-primary: #e8eaed;
  --text-secondary: #b8bdc8;
  --text-muted: #8b92a3;

  /* Border and divider */
  --border-color: #3a4254;

  /* Status colors */
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* Navigation */
.navbar {
  background-color: rgba(20, 24, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(20, 24, 36, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  color: var(--accent-primary);
}

.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(--accent-primary) !important;
}

.dropdown-menu {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--bg-card);
  color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 121, 65, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-secondary) 100%);
}

.page-header h1 {
  color: var(--text-primary);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 121, 65, 0.3);
}

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

.btn-outline-light:hover {
  background: var(--bg-card);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

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

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

/* Sections */
.section-padding {
  padding: 100px 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 121, 65, 0.2);
  border-color: var(--accent-primary);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Problem Cards */
.problem-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
  height: 100%;
}

.problem-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(200, 121, 65, 0.15);
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 121, 65, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

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

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

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(200, 121, 65, 0.2);
}

.service-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.4);
}

.service-card h3 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}

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

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

.service-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.service-list li i {
  color: var(--accent-primary);
  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;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animated {
  opacity: 1;
  transform: translateY(0);
}

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

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

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.4);
}

.timeline-content {
  width: 45%;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

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

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-marker {
    left: 30px;
  }

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

/* Stats Cards */
.stat-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 121, 65, 0.2);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Result Cards */
.result-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 121, 65, 0.2);
}

.result-card i {
  font-size: 3rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

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

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

/* Delivery Steps */
.delivery-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.4);
}

.delivery-step h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* FAQ Accordion */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(200, 121, 65, 0.1);
  color: var(--accent-primary);
  box-shadow: none;
}

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

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  color: var(--text-secondary);
  padding: 1.5rem;
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

.form-control {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(200, 121, 65, 0.25);
}

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

.form-check-input {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

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

.form-check-label {
  color: var(--text-secondary);
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

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

.contact-info-card a {
  color: var(--accent-light);
}

/* Thank You Section */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
}

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

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200, 121, 65, 0.15) 0%, transparent 50%);
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.cta-section .lead {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

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

.footer-contact li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--accent-primary);
  margin-right: 0.75rem;
  width: 20px;
}

.footer hr {
  border-color: var(--border-color);
  opacity: 0.5;
}

/* Legal Content */
.legal-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* Cookie Consent Banner */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid var(--accent-primary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#cookieConsent p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

#cookieConsent .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

/* Responsive */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

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

  .navbar-collapse {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
