/* FILE: css/style.css */

:root {
  /* Dark blue base with golden accents - semi-dark theme */
  --color-primary: #d4af37;
  --color-primary-dark: #b8941f;
  --color-secondary: #1e3a5f;
  --color-background: #0f1c2e;
  --color-background-light: #1a2d47;
  --color-surface: #253a56;
  --color-text: #e8eaed;
  --color-text-muted: #b0b8c1;
  --color-border: #3a4f6a;
  --color-success: #4caf50;
  --color-white: #ffffff;

  /* Fonts */
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lora", serif;

  /* Spacing */
  --section-padding: 80px 0;
}

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

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

/* Header */
.header {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--color-primary);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(15, 28, 46, 0.95);
  backdrop-filter: blur(10px);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.dropdown-menu {
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
}

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

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

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(212, 175, 55, 0.03) 50px,
    rgba(212, 175, 55, 0.03) 51px
  );
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-secondary);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--color-text-muted);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-primary);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  color: var(--color-background);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--color-background);
}

.btn-outline-light {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--color-primary);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-white);
}

.feature-text {
  color: var(--color-text-muted);
  margin: 0;
}

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

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-primary);
  transition: height 0.3s ease;
}

.problem-card:hover::before {
  height: 100%;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.problem-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.problem-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-white);
}

.problem-text {
  color: var(--color-text-muted);
  margin: 0;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-image {
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.service-description {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-list li {
  padding: 8px 0;
  color: var(--color-text-muted);
}

.service-list i {
  color: var(--color-primary);
  margin-right: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

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

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-background);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  width: calc(50% - 60px);
  margin: 0 20px;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.timeline-text {
  color: var(--color-text-muted);
  margin: 0;
}

/* Results */
.result-card {
  text-align: center;
  padding: 30px;
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--color-primary);
}

.result-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-white);
}

.result-text {
  color: var(--color-text-muted);
  margin: 0;
}

/* FAQ */
.faq {
  background: var(--color-background-light);
}

.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background: var(--color-surface);
  color: var(--color-white);
  font-weight: 600;
  padding: 20px;
  border: none;
  font-size: 1.125rem;
}

.accordion-button:not(.collapsed) {
  background: var(--color-background-light);
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(77%) sepia(49%) saturate(398%) hue-rotate(4deg) brightness(91%)
    contrast(88%);
}

.accordion-body {
  background: var(--color-background-light);
  color: var(--color-text-muted);
  padding: 20px;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-background) 100%);
}

.cta-box {
  background: var(--color-background-light);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--color-background);
  padding: 60px 0 20px;
  border-top: 2px solid var(--color-primary);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary);
}

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

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

.footer-contact li {
  margin-bottom: 10px;
  color: var(--color-text-muted);
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
}

/* Service Pages */
.service-hero,
.contact-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);
  text-align: center;
}

.service-hero-title,
.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.service-hero-subtitle,
.contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.service-intro {
  background: var(--color-background);
}

.bg-dark-subtle {
  background: var(--color-background-light);
}

.info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  gap: 20px;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 8px 0;
  color: var(--color-text-muted);
  padding-left: 25px;
  position: relative;
}

.info-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.problem-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 15px;
}

.problem-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-white);
}

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

.delivery-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}

.delivery-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.delivery-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-white);
}

.delivery-text {
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.delivery-duration {
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.result-item {
  text-align: center;
  padding: 30px;
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  height: 100%;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-white);
}

.result-description {
  color: var(--color-text-muted);
  margin: 0;
}

/* Contact Page */
.contact-section {
  background: var(--color-background);
}

.contact-info {
  padding: 20px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-icon {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-white);
}

.contact-item-content p,
.contact-item-content a {
  color: var(--color-text-muted);
  margin: 0;
  text-decoration: none;
}

.contact-item-content a:hover {
  color: var(--color-primary);
}

.contact-form-container {
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
}

.contact-form .form-label {
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 12px;
  border-radius: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-text);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form .form-check-input {
  background: var(--color-surface);
  border-color: var(--color-border);
}

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

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

.contact-form .form-check-label a {
  color: var(--color-primary);
}

/* Thank You Page */
.thankyou-section {
  padding: 200px 0 150px;
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.thankyou-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}

.thankyou-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.thankyou-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.legal-updated {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-content ul li {
  margin-bottom: 10px;
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-background-light);
  border-top: 2px solid var(--color-primary);
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

#cookieBanner p {
  color: var(--color-text);
  margin-bottom: 15px;
}

#cookieBanner a {
  color: var(--color-primary);
}

#cookieBanner .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Cookie Modal */
.modal-content {
  background: var(--color-background-light);
  border: 1px solid var(--color-border);
}

.modal-header {
  border-bottom: 1px solid var(--color-border);
}

.modal-title {
  color: var(--color-primary);
}

.modal-body {
  color: var(--color-text);
}

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

.modal-footer {
  border-top: 1px solid var(--color-border);
}

.btn-close {
  filter: brightness(0) saturate(100%) invert(77%) sepia(49%) saturate(398%) hue-rotate(4deg) brightness(91%)
    contrast(88%);
}

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

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

  .timeline::before {
    left: 40px;
  }

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

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

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

  .cta-box {
    padding: 30px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

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

  .cta-title {
    font-size: 1.5rem;
  }

  .service-hero-title,
  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 25px;
  }
}
