/* 
 * DOMAIN - Financial Audit Website
 * Main Stylesheet
 *
 * Color Palette:
 * - Obsidian Black (#0F0F0F) — background for high contrast
 * - Neon Tangerine (#FF8C42) — primary call-to-action and accents
 * - Arctic Blue (#B0E9FF) — section dividers and highlight backgrounds
 * - Solar Yellow (#F8E16C) — icon highlights and button hover states
 * - Deep Plum (#6A1B4D) — subtle text emphasis and visual anchors
 */

:root {
  /* Color Variables */
  --color-obsidian: #0F0F0F;
  --color-tangerine: #FF8C42;
  --color-arctic: #B0E9FF;
  --color-yellow: #F8E16C;
  --color-plum: #6A1B4D;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-dark-gray: #333333;

  /* Font Sizes - Using clamp for fluid typography */
  --font-size-xs: clamp(0.75rem, 0.7vw + 0.6rem, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8vw + 0.7rem, 1rem);
  --font-size-base: clamp(1rem, 1vw + 0.8rem, 1.125rem);
  --font-size-md: clamp(1.125rem, 1.2vw + 0.9rem, 1.25rem);
  --font-size-lg: clamp(1.25rem, 1.5vw + 1rem, 1.5rem);
  --font-size-xl: clamp(1.5rem, 2vw + 1.1rem, 2rem);
  --font-size-2xl: clamp(2rem, 2.5vw + 1.5rem, 2.5rem);
  --font-size-3xl: clamp(2.5rem, 3vw + 2rem, 3.5rem);

  /* Spacing */
  --space-xs: clamp(0.5rem, 0.5vw + 0.3rem, 0.75rem);
  --space-sm: clamp(0.75rem, 0.75vw + 0.5rem, 1rem);
  --space-md: clamp(1rem, 1vw + 0.75rem, 1.5rem);
  --space-lg: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  --space-xl: clamp(2rem, 2vw + 1.5rem, 3rem);
  --space-2xl: clamp(3rem, 3vw + 2rem, 4rem);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-tangerine);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-plum);
}

/* Header Styles */
.site-header {
  background-color: var(--color-obsidian);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo a {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--color-tangerine), var(--color-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.main-nav a {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-tangerine);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav .cta-button {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  border: none;
}

.main-nav .cta-button:hover {
  background-color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--color-obsidian);
}

.menu-toggle,
.menu-icon {
  display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .main-nav .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--color-obsidian);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: var(--space-lg);
    gap: var(--space-md);
    visibility: hidden;
  }
  
  .menu-toggle:checked ~ .nav-list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }
  
  .menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
  }
  
  .menu-icon span:nth-child(1) {
    top: 0;
  }
  
  .menu-icon span:nth-child(2) {
    top: 10px;
  }
  
  .menu-icon span:nth-child(3) {
    top: 20px;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  background-color: var(--color-obsidian);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-obsidian) 0%, var(--color-plum) 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, var(--color-tangerine) 0%, transparent 30%);
  animation: gradientFlow 10s ease infinite alternate;
  z-index: 2;
  opacity: 0.3;
}

@keyframes gradientFlow {
  0% {
    transform: translate(-5%, -5%) scale(0.9);
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.hero-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(45deg, var(--color-tangerine) 0%, var(--color-yellow) 100%);
  color: var(--color-white);
  font-weight: 700;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
  color: var(--color-obsidian);
}

/* Section Styling */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-tangerine), var(--color-yellow));
}

/* About Section */
.about {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.about-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background-color: var(--color-light-gray);
  transition: all 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: var(--space-md);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-item:hover .about-image img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: var(--color-arctic);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.services-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-obsidian);
  color: var(--color-tangerine);
  font-size: 36px;
}

.service-content {
  padding: var(--space-lg);
}

.service-title {
  margin-bottom: var(--space-sm);
  color: var(--color-plum);
}

/* Process Section */
.process {
  background-color: var(--color-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--color-tangerine);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
}

.timeline-item:nth-child(odd) {
  margin-right: 50%;
  text-align: right;
}

.timeline-content {
  position: relative;
  padding: var(--space-lg);
  background-color: var(--color-light-gray);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--color-tangerine);
  border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
}

/* Timeline title styling */
.timeline-content h3 {
  color: var(--color-plum);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    margin: 0 0 var(--space-lg) 60px;
    text-align: left;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
  }
  
  .timeline-item:nth-child(even) .timeline-content::before,
  .timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    right: auto;
  }
  
  /* Adjust spacing for mobile timeline */
  .timeline-content {
    padding: var(--space-md);
  }
}

/* Case Studies Section */
.cases {
  background-color: var(--color-light-gray);
  position: relative;
}

.cases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.case-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
  height: 200px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: var(--space-lg);
}

.case-title {
  margin-bottom: var(--space-sm);
  color: var(--color-plum);
}

/* Order Form Section */
.order-form-section {
  background: linear-gradient(135deg, var(--color-obsidian) 0%, var(--color-plum) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-tangerine);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.order-form-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--color-arctic);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.order-form-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.form-errors {
  background-color: rgba(255, 0, 0, 0.15);
  border: 2px solid rgba(255, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.form-errors ul {
  list-style-type: none;
  padding-left: var(--space-md);
}

.form-errors li {
  margin-bottom: var(--space-xs);
  position: relative;
}

.form-errors li::before {
  content: '⚠️';
  margin-right: var(--space-xs);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-tangerine);
  background-color: rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  background-size: 16px;
  padding-right: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-tangerine);
  font-weight: 600;
  cursor: pointer;
}

select.form-control option {
  background-color: var(--color-obsidian);
  color: var(--color-white);
  padding: var(--space-md);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.checkbox-input {
  margin-right: var(--space-sm);
  margin-top: 5px;
}

.form-submit {
  display: block;
  width: 100%;
  background: linear-gradient(45deg, var(--color-tangerine) 0%, var(--color-yellow) 100%);
  color: var(--color-white);
  font-weight: 700;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
  background: linear-gradient(45deg, var(--color-yellow) 0%, var(--color-tangerine) 100%);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-white);
  overflow: hidden;
}

.testimonials-container {
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  padding: var(--space-lg);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background-color: var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  line-height: 1;
  color: var(--color-tangerine);
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 0;
}

.testimonial-position {
  color: var(--color-plum);
  font-size: var(--font-size-xs);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-sm);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-light-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--color-tangerine);
  transform: scale(1.2);
}

@keyframes testimonialSlide {
  0% {
    transform: translateX(0);
  }
  33.33% {
    transform: translateX(-100%);
  }
  66.66% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Blog Preview Section */
.blog {
  background-color: var(--color-light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-lg);
}

.blog-date {
  color: var(--color-plum);
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-sm);
}

.blog-title {
  margin-bottom: var(--space-sm);
}

.blog-excerpt {
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.blog-link::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.contact-info {
  background-color: var(--color-obsidian);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.contact-info-item {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: var(--font-size-lg);
  color: var(--color-tangerine);
  margin-right: var(--space-sm);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-obsidian);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--color-tangerine), var(--color-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-md);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact h3,
.footer-links h3 {
  color: var(--color-arctic);
  margin-bottom: var(--space-md);
}

.footer-contact address {
  font-style: normal;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-tangerine);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-obsidian);
  color: var(--color-white);
  padding: var(--space-md);
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cookie-content p {
  margin: 0;
}

#accept-cookies {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#accept-cookies:hover {
  background-color: var(--color-yellow);
  transform: translateY(-2px);
}

/* Policy Pages */
.policy-page {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
  border-bottom: 2px solid var(--color-tangerine);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.policy-section {
  margin-bottom: var(--space-lg);
}

.policy-section h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-plum);
}

/* Thank You Page */
.thank-you {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 100%);
}

.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-tangerine);
  position: relative;
  overflow: hidden;
}

.thank-you-container::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: radial-gradient(var(--color-arctic), transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

.thank-you-icon {
  font-size: 80px;
  color: var(--color-tangerine);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(255, 140, 66, 0.3);
  display: inline-block;
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-title {
  margin-bottom: var(--space-md);
  color: var(--color-plum);
  font-weight: 700;
}

.back-to-home {
  display: inline-block;
  margin-top: var(--space-lg);
  background: linear-gradient(45deg, var(--color-tangerine) 0%, var(--color-yellow) 100%);
  color: var(--color-white);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
  border: none;
  text-decoration: none;
}

.back-to-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 140, 66, 0.5);
  color: var(--color-white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
  
  .cookie-content {
    justify-content: center;
    text-align: center;
  }
  
  .policy-container {
    padding: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .footer-grid {
    gap: var(--space-md);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}
