/* Main CSS File for Financial Audit Website */

:root {
  --deep-indigo: #0F172A;
  --gold-neon: #FACC15;
  --electric-blue: #2563EB;
  --light-smoky: #F1F5F9;
  --accent-blue: #38BDF8;
  --subtle-gray: #94A3B8;
}

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

body {
  font-family: 'Arial', sans-serif;
  color: var(--deep-indigo);
  background-color: var(--light-smoky);
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-indigo);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--gold-neon);
  color: var(--deep-indigo);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: var(--deep-indigo);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */
.menu-toggle {
  display: none;
}

.menu-toggle-label {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--light-smoky);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold-neon);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--accent-blue) 100%);
  color: white;
  padding-top: 60px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-smoky);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 4px solid var(--gold-neon);
}

/* About Section */
.about {
  background-color: white;
}

/* Services Section */
.services {
  background-color: var(--light-smoky);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--deep-indigo);
}

/* Benefits Section */
.benefits {
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-smoky);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

/* How We Work Section */
.how-we-work {
  background-color: var(--light-smoky);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--gold-neon);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--gold-neon);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.left::after {
  right: -10px;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  padding: 2rem;
  text-align: center;
}

.testimonial-slide:nth-child(1) {
  display: block;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--deep-indigo);
}

.testimonial-author {
  font-weight: 700;
  color: var(--electric-blue);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-controls label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--subtle-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-controls input:checked + label {
  background-color: var(--gold-neon);
}

.testimonial-controls input {
  display: none;
}

/* Order Form Section */
.order-form {
  background-color: var(--deep-indigo);
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light-smoky);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--gold-neon);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--deep-indigo);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--subtle-gray);
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-checkbox label {
  color: var(--deep-indigo);
  font-size: 0.9rem;
}

.form-checkbox a {
  color: var(--electric-blue);
}

/* FAQ Section */
.faq {
  background-color: var(--light-smoky);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  background-color: white;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
  padding: 0 1rem;
}

.faq-toggle {
  display: none;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.faq-toggle:checked + .faq-question::after {
  content: '-';
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 10px;
  color: var(--electric-blue);
}

.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: var(--deep-indigo);
  color: var(--light-smoky);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-about {
  max-width: 300px;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--light-smoky);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-indigo);
  color: white;
  padding: 1rem;
  z-index: 1001;
  display: none;
}

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

.cookie-text {
  margin-right: 1rem;
}

.cookie-close {
  display: none;
}

.cookie-close + label {
  padding: 8px 16px;
  background-color: var(--gold-neon);
  color: var(--deep-indigo);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-close:checked ~ .cookie-consent {
  display: none;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 21px;
  }
  
  .timeline-item.right {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle-label {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    flex-direction: column;
    background-color: var(--deep-indigo);
    padding: 2rem;
    transition: left 0.3s ease;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .menu-toggle:checked ~ .nav-menu {
    left: 0;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 50px;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .benefit-card,
  .service-card {
    padding: 1rem;
  }
} 