/* 
* Main Stylesheet
* Financial Audit Company Website
* Colors:
* - Main background: #2c3e50 (deep indigo)
* - Accent: #d4ff00 (neon lime)
* - Secondary background: #8e9eab (matte gray-violet)
* - CTA: #ff6f00 (bright orange)
*/

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff6f00;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: #2c3e50;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #d4ff00;
  margin: 0.8rem auto 0;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4ff00;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #2c3e50;
}

/* Hero Section */
.hero {
  padding: 10rem 0 8rem;
  background-color: #2c3e50;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.7);
}

.hero-content-centered {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #ff6f00;
  color: #fff;
}

.btn-primary:hover {
  background-color: #ff8f00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

.btn-secondary {
  background-color: rgba(212, 255, 0, 0.2);
  color: #d4ff00;
  border: 2px solid #d4ff00;
}

.btn-secondary:hover {
  background-color: #d4ff00;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 255, 0, 0.4);
}

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-features {
  margin-top: 2rem;
}

.about-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.about-features li i {
  color: #d4ff00;
  background: #2c3e50;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.8rem;
}

.service-card h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #d4ff00;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.service-card ul li i {
  color: #d4ff00;
  background: #2c3e50;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  font-size: 0.8rem;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background-color: #2c3e50;
}

.benefits .section-title {
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #d4ff00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(212, 255, 0, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(212, 255, 0, 0.4);
}

.benefit-icon i {
  color: #2c3e50;
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  min-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p:before,
.testimonial-content p:after {
  content: '"';
  font-size: 2rem;
  color: #d4ff00;
  position: absolute;
}

.testimonial-content p:before {
  left: -5px;
  top: -10px;
}

.testimonial-content p:after {
  right: -5px;
  bottom: -10px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: #2c3e50;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #8e9eab;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background-color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
  transform: translateY(70px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.form-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #d4ff00;
  outline: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.form-check input {
  margin-right: 1rem;
  margin-top: 5px;
}

.form-check label {
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem 0;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4ff00;
  background: #2c3e50;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  height: 40px;
  width: auto;
  margin-right: 10px;
  fill: #fff;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-info p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: #d4ff00;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #d4ff00;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #d4ff00;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.95);
  color: #fff;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: bottom 0.5s ease;
  height: auto;
  visibility: hidden;
}

.cookie-popup.show {
  bottom: 0;
  visibility: visible;
}

.cookie-text {
  flex-grow: 1;
  margin-right: 2rem;
  font-size: 0.9rem;
}

.cookie-text a {
  color: #d4ff00;
  text-decoration: underline;
}

.cookie-accept {
  background-color: #d4ff00;
  color: #2c3e50;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background-color: #e5ff4c;
  transform: translateY(-2px);
}

/* Policy Pages */
.policy-page {
  padding: 8rem 0 4rem;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.policy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.policy-content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 2rem 0 1rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
  padding: 10rem 0;
  text-align: center;
}

.thank-you-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #d4ff00;
  color: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
}

.thank-you-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thank-you-subtitle {
  font-size: 1.2rem;
  color: #8e9eab;
  margin-bottom: 2.5rem;
}

.return-home {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #2c3e50;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.return-home:hover {
  background-color: #3e5871;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
  color: #fff;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    flex: auto;
    width: 100%;
  }
  
  .testimonial-card {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .portfolio-item {
    height: 250px;
  }
  
  .form-card {
    padding: 2rem;
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .service-card, .benefit-card {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .policy-container {
    padding: 2rem;
  }
} 