/* 
   Style Sheet for Financial Audit Website
   Color Palette:
   - Background: Peach gradient (#FFEDD5 → #FDE68A)
   - Accents: Deep grape (#581C87), aquamarine (#06B6D4)
   - Text: Dark gray (#1F2937), white
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Height of fixed header */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background: linear-gradient(135deg, #FFEDD5 0%, #FDE68A 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #581C87;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #06B6D4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 5rem 0;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #581C87, #06B6D4);
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  color: white;
  background: rgba(88, 28, 135, 0.8);
  box-shadow: 0 0 15px rgba(88, 28, 135, 0.4), 0 0 5px rgba(88, 28, 135, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  color: white;
  background: rgba(88, 28, 135, 0.9);
  box-shadow: 0 0 20px rgba(88, 28, 135, 0.6), 0 0 10px rgba(88, 28, 135, 1);
}

.btn-secondary {
  color: #581C87;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2), 0 0 5px rgba(6, 182, 212, 0.4);
  border: 1px solid rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: #581C87;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4), 0 0 10px rgba(6, 182, 212, 0.6);
}

.btn-nav {
  background: rgba(88, 28, 135, 0.8);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav:hover {
  background: rgba(88, 28, 135, 0.9);
  color: white;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.btn-cookie {
  background: #581C87;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-cookie:hover {
  background: #06B6D4;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  color: #581C87;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #06B6D4;
  transition: width 0.3s ease;
}

.main-nav a:not(.btn-nav):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.7), rgba(253, 230, 138, 0.7)), url('../img/3vKQE5.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  color: #581C87;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #581C87, #06B6D4);
  color: white;
  border-radius: 50%;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
}

.benefit-card h3 {
  color: #581C87;
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3, .service-card p, .service-card .price {
  padding: 0 1.5rem;
}

.service-card h3 {
  color: #581C87;
  margin-top: 1.5rem;
}

.service-card .price {
  font-weight: 700;
  color: #06B6D4;
  margin: 1rem 0;
}

.service-card .btn-secondary {
  margin: 1rem 1.5rem 1.5rem;
  display: inline-block;
}

/* ===== STEPS SECTION ===== */
.steps {
  background-color: #fff9e0;
}

.steps-intro {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.steps-image {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.steps-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.steps-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

@media (max-width: 992px) {
  .steps-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .step-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .step-card {
    flex: 0 0 100%;
  }
}

.step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: relative;
  margin: 0 auto 1rem;
  width: 50px;
  height: 50px;
  background: #06B6D4;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  color: #581C87;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.5), rgba(253, 230, 138, 0.5));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(88, 28, 135, 0.1);
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #581C87;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.7), rgba(253, 230, 138, 0.7));
}

.contact form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(88, 28, 135, 0.2);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #06B6D4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.main-footer {
  background: rgba(31, 41, 55, 0.95);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-grid h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-grid h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #06B6D4;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #06B6D4;
  transform: translateY(-3px);
}

.footer-contact a {
  color: #06B6D4;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
}

.thank-you-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon svg {
  width: 80px;
  height: 80px;
  color: #06B6D4;
  padding: 15px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

.thank-you-message {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: #581C87;
  margin-bottom: 2rem;
}

.thank-you-content p {
  margin-bottom: 1rem;
}

.thank-you-actions {
  margin-top: 3rem;
}

/* ===== POLICY PAGES ===== */
.policy {
  padding: 7rem 0 5rem;
}

.policy h1 {
  color: #581C87;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.policy h1:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #581C87, #06B6D4);
  border-radius: 2px;
}

.policy-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  color: #581C87;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.policy-content h2:after {
  left: 0;
  transform: none;
  width: 60px;
}

.policy-content h3 {
  color: #06B6D4;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.policy-content ul, .policy-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    clip-path: circle(0px at top right);
    transition: clip-path 0.5s ease;
    z-index: -1;
  }
  
  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
  }
  
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background: #581C87;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
  }
  
  .nav-toggle-label span::before {
    transform: translateY(-10px);
  }
  
  .nav-toggle-label span::after {
    transform: translateY(10px);
  }
  
  .nav-toggle:checked ~ .main-nav {
    clip-path: circle(1000px at top right);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-grid h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
} 