/* FILE: css/style.css */

:root {
  /* Color System - Light theme with warm beige and burgundy accents */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-primary: #8b2e3e;
  --color-accent: #d4a574;
  --color-text-main: #2c2c2c;
  --color-text-muted: #666666;
  --color-border: #e5e0d8;
  --color-success: #4a7c59;
  --color-error: #c33c3c;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8b2e3e 0%, #a64d5c 100%);
  --gradient-accent: linear-gradient(135deg, #d4a574 0%, #e8c9a0 100%);
  --gradient-hero: linear-gradient(135deg, #8b2e3e 0%, #5c1f2a 100%);

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --radius: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(139, 46, 62, 0.08);
  --shadow-md: 0 4px 16px rgba(139, 46, 62, 0.12);
  --shadow-lg: 0 8px 32px rgba(139, 46, 62, 0.16);
}

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

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

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

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

.site-header.scrolled {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

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

.site-header.scrolled .navbar-brand {
  color: var(--color-primary) !important;
}

.nav-link {
  color: var(--color-text-main) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: color 0.3s ease;
}

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

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28139, 46, 62, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  padding: 140px 0 80px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-cta .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

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

.hero-benefits li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.hero-benefits i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

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

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

.btn-light:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-card,
.audience-card,
.service-card {
  text-align: center;
  padding: 1rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--color-primary);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-list {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.service-list li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

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

/* Approach Section */
.approach-items {
  margin-top: 2rem;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.approach-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.approach-content h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.approach-content p {
  color: var(--color-text-muted);
  margin: 0;
}

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

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}
.process-step:nth-child(5) {
  animation-delay: 0.5s;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-content h3 {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.process-content p {
  color: var(--color-text-muted);
  margin: 0;
}

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

/* Result Cards */
.result-card {
  padding: 1.5rem;
}

.result-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.results-example {
  margin-top: 4rem;
}

.case-box {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

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

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 46, 62, 0.1);
}

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

.form-note {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* FAQ Section */
.accordion-item {
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  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;
}

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

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

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

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

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #cccccc;
  padding: 60px 0 20px;
}

.footer-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-text {
  color: #cccccc;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-contact i {
  color: var(--color-accent);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #999999;
}

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

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

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

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

.contact-info-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  background: var(--color-bg);
  padding: 0;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5c1f2a 100%);
  color: white;
  padding: 100px 0;
}

.map-placeholder i {
  color: var(--color-accent);
}

/* Service Detail Cards */
.service-detail-card,
.result-detail-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.service-detail-card i,
.result-detail-card i {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

/* Problem Solution Items */
.problem-solution-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.problem-solution-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

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

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

/* Delivery Timeline */
.delivery-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.delivery-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.delivery-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.delivery-content p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.delivery-content strong {
  color: var(--color-text-main);
}

/* Legal Content */
.legal-content {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

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

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

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

.thank-you-content {
  background: var(--color-surface);
  padding: 4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 4rem;
  color: white;
}

.thank-you-content h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.thank-you-content .lead {
  color: var(--color-text-main);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

#cookieBanner.show {
  display: block;
}

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

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-text a {
  color: var(--color-accent);
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

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

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  color: var(--color-primary);
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.cookie-close:hover {
  color: var(--color-primary);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-primary);
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-slider {
  background-color: var(--color-success);
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

  .process-timeline {
    padding-left: 0;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

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

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

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

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

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 2rem;
  }

  .approach-item,
  .problem-solution-item {
    flex-direction: column;
    text-align: center;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .cookie-modal-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

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

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

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