/* FILE: css/style.css */

:root {
  /* Colors - Dark theme with charcoal-grey background and ruby accents */
  --color-bg: #1a1a1a;
  --color-surface: #242424;
  --color-primary: #c73e3a;
  --color-accent: #e85854;
  --color-text-main: #f5f5f5;
  --color-text-muted: #b0b0b0;
  --color-border: #3a3a3a;
  --color-success: #4caf50;
  --color-error: #f44336;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #c73e3a 0%, #8b2b28 100%);
  --gradient-accent: linear-gradient(135deg, #e85854 0%, #c73e3a 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);

  /* Fonts */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-main);
}

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

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  padding: 1rem 0;
}

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

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

.navbar-nav .nav-link {
  color: var(--color-text-main) !important;
  margin: 0 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

.navbar-toggler {
  border-color: var(--color-primary);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 62, 58, 0.25);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(199, 62, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(26, 26, 26, 0.8) 0%, rgba(36, 36, 36, 0.6) 100%);
  pointer-events: none;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta .btn {
  margin: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-benefits h6 {
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  padding: 0;
}

.hero-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: var(--color-text-main);
}

.hero-list li i {
  color: var(--color-accent);
  margin-right: 1rem;
  font-size: 1.2rem;
}

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

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

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(199, 62, 58, 0.2);
  border-color: var(--color-primary);
}

.card-body {
  padding: 2rem;
}

/* Audience Cards */
.audience-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.audience-card .card-title  , .card-title{
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}
.card-text{
  color: #b0b0b0;
}

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

/* Problem Cards */
.problem-card {
  border-left: 4px solid var(--color-primary);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(199, 62, 58, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.problem-icon i {
  font-size: 1.8rem;
  color: var(--color-accent);
}

/* Service Cards */
.service-card {
  border-top: 4px solid var(--color-primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

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

.service-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--color-text-muted);
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.service-outcome {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* Process Timeline */
.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-accent);
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  margin-right: 2rem;
  z-index: 1;
}

.step-content h5 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.step-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Result Cards */
.result-card {
  border-left: 4px solid var(--color-accent);
}

.result-icon {
  width: 70px;
  height: 70px;
  background: rgba(199, 62, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon i {
  font-size: 2rem;
  color: var(--color-accent);
}

/* Case Example */
.case-example {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.case-example h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}

.case-detail {
  padding: 1.5rem;
  background-color: var(--color-bg);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.case-detail h6 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.case-detail p {
  color: var(--color-text-muted);
  margin: 0;
}

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

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

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

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

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

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

/* Contact Form */
.contact-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

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

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: var(--color-bg);
  border-color: var(--color-primary);
  color: var(--color-text-main);
  box-shadow: 0 0 0 0.2rem rgba(199, 62, 58, 0.25);
}

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

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

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

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

.response-time-notice {
  background-color: rgba(199, 62, 58, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: var(--color-text-muted);
  text-align: center;
}

.response-time-notice i {
  color: var(--color-accent);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-accent);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(199, 62, 58, 0.4);
}

.btn-outline-light {
  border: 2px solid var(--color-text-main);
  color: var(--color-text-main);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--color-text-main);
  color: var(--color-bg);
}

.btn-light {
  background-color: var(--color-text-main);
  color: var(--color-bg);
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: white;
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-accent);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background-color: #0f0f0f;
  padding: 60px 0 30px;
  border-top: 1px solid var(--color-border);
}

.footer-brand h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

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

.footer-links h6,
.footer-contact h6 {
  color: var(--color-text-main);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

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

.footer-links ul li a,
.footer-contact ul li a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

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

.footer-contact ul li {
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--color-primary);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* Contact Page Specific */
.contact-info-wrapper {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.contact-info-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h6 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.contact-details p {
  color: var(--color-text-muted);
  margin: 0;
}

.contact-details a {
  color: var(--color-accent);
}

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

.problem-box:hover,
.result-box:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.problem-box .problem-icon,
.result-box .result-icon-large {
  width: 70px;
  height: 70px;
  background: rgba(199, 62, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon-large {
  margin: 0 auto 1.5rem;
}

.problem-box .problem-icon i,
.result-box .result-icon-large i {
  font-size: 2rem;
  color: var(--color-accent);
}

.delivery-process {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.delivery-step {
  margin-bottom: 2.5rem;
  padding-left: 80px;
  position: relative;
}

.step-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
}

.delivery-step h5 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.delivery-step p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}

.timeline-note {
  background-color: rgba(199, 62, 58, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.cta-card {
  background: var(--gradient-accent);
  border: none;
}

.cta-card .card-body h3 {
  color: white;
}

.cta-card .card-body p {
  color: rgba(255, 255, 255, 0.9);
}

/* Legal Pages */
.legal-page {
  padding: 150px 0 80px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.legal-page h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.legal-page .table {
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.legal-page .table thead {
  background-color: var(--color-bg);
}

.legal-page .table th {
  color: var(--color-text-main);
  border-color: var(--color-border);
}

.legal-page .table td {
  border-color: var(--color-border);
}

.legal-page .alert-info {
  background-color: rgba(199, 62, 58, 0.1);
  border-color: var(--color-primary);
  color: var(--color-text-muted);
}

/* Thank You Page */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background: var(--gradient-hero);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.thank-you-icon i {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-info {
  display: flex;
  justify-content: space-around;
  margin: 3rem 0;
  gap: 2rem;
}

.info-item {
  text-align: center;
  flex: 1;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

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

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

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-top: 2px solid var(--color-primary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

#cookieBanner.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  color: var(--color-text-muted);
}

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

#cookieModal .modal-content {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

#cookieModal .modal-header {
  border-bottom-color: var(--color-border);
}

#cookieModal .modal-title {
  color: var(--color-text-main);
}

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

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

#cookieModal .form-check-input:disabled {
  opacity: 0.5;
}

#cookieModal .btn-close {
  filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(26, 26, 26, 0.98);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

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

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

  .process-timeline::before {
    display: none;
  }

  .step-number {
    margin-right: 1rem;
  }

  .thank-you-info {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .delivery-step {
    padding-left: 0;
  }

  .step-badge {
    position: relative;
    margin-bottom: 1rem;
  }
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.rounded {
  border-radius: 12px !important;
}

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