/* FinAudit Vision - Main Stylesheet */

:root {
  --primary: #1E3A8A;      /* Deep blue */
  --accent: #10B981;       /* Emerald green */
  --secondary: #111827;    /* Dark slate gray */
  --text: #F9FAFB;         /* Light gray */
  --text-secondary: #9CA3AF; /* Medium gray */
  --background: #F3F4F6;   /* Light background */
  --highlight: #60A5FA;    /* Light blue */
  --gradient: linear-gradient(135deg, #1E3A8A, #111827);
  --card-bg: #FFFFFF;      /* Card background */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
  background-color: var(--background);
  color: var(--secondary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  transition: var(--transition);
}

h2:hover::after {
  width: 100px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: #0EA271;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* Header */
header {
  background-color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  transition: var(--transition);
}

.logo span {
  color: var(--primary);
  font-weight: 700;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  position: relative;
  color: var(--secondary);
  font-weight: 500;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Hero section */
.hero {
  background: var(--gradient);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/CLNzWU.jpg') no-repeat center center/cover;
  opacity: 0.2;
  animation: fadeIn 2s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1.2s ease;
  color: var(--text-secondary);
}

.hero-btn {
  animation: fadeIn 1.5s ease;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  display: inline-block;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* About section */
.about {
  background-color: white;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services section */
.services {
  background-color: var(--background);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(243, 244, 246, 0.9), rgba(243, 244, 246, 0.9)), url('../img/ZrDzUt.jpg');
  background-size: cover;
  background-position: center;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-price {
  font-size: 1.3rem;
  margin: 15px 0;
  color: var(--accent);
  font-weight: 700;
}

/* Process section */
.process {
  background-color: white;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../img/ld4Ktn.jpg');
  background-size: cover;
  background-position: center;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-step {
  flex: 0 0 calc(33.333% - 30px);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  background-color: var(--card-bg);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.process-step::after {
  display: none;
  content: '';
  position: absolute;
  top: 30px;
  right: -35%;
  width: 70%;
  height: 2px;
  background-color: var(--accent);
  z-index: -1;
}

.process-step:last-child::after {
  display: none;
}

/* Benefits section */
.benefits {
  background-color: var(--background);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  padding: 25px;
  border-radius: 12px;
  background-color: var(--card-bg);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Testimonials section */
.testimonials {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../img/WfehhX.jpg');
  background-size: cover;
  background-position: center;
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonial-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--secondary);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

/* Contact section */
.contact {
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  color: var(--accent);
  margin-right: 15px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: white;
  font-family: inherit;
  font-size: 1rem;
  color: var(--secondary);
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 60px 0 30px;
}

.footer-links h3 {
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
  color: var(--secondary);
}

/* Legal pages */
.legal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 100px;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { 
    transform: translateX(-50px);
    opacity: 0;
  }
  to { 
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from { 
    transform: translateY(30px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

/* Thank you page */
.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--background);
}

.thank-you-content {
  margin: 0 auto;
  max-width: 600px;
  animation: fadeIn 1s ease;
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .process-step {
    flex: 0 0 calc(50% - 20px);
  }
  
  .process-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  h3 {
      font-size: 1.2rem ;
  }
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .process-step {
    flex: 0 0 100%;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  .about-image {
    margin-top: 30px;
  }
  
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
} 