/* Main Stylesheet for domain - Financial Audit Services */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color palette */
  --bg-color: #0D1B2A;
  --accent-color: #FCA311;
  --text-color: #E0E1DD;
  --button-color: #14213D;
  --highlight-color: #FF5733;
  
  /* Typography */
  --main-font: 'Poppins', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

body {
  font-family: var(--main-font);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--highlight-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--button-color);
  color: var(--text-color);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.btn-primary:hover {
  background-color: var(--highlight-color);
}

/* Header */
.header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(13, 27, 42, 0.95);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: 1rem;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.toggle-link {
  display: block;
  height: 24px;
  width: 30px;
  position: relative;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  position: absolute;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 10px;
}

.bar:nth-child(3) {
  top: 20px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.9)), url('./img/JBgFRf.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: rgba(20, 33, 61, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}

.about-text {
  animation: fadeIn 1s ease;
}

.about-image {
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.service-card {
  background-color: rgba(20, 33, 61, 0.4);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.service-title {
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: rgba(20, 33, 61, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2);
  color: var(--highlight-color);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(20, 33, 61, 0.4);
  border-radius: 10px;
  padding: 2rem;
  max-width: 350px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-author-info h5 {
  margin-bottom: 0.2rem;
}

.testimonial-author-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Contact Form Section */
.contact {
  padding: 5rem 0;
  background-color: rgba(20, 33, 61, 0.3);
}

.form-container {
  background-color: rgba(20, 33, 61, 0.6);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(224, 225, 221, 0.3);
  border-radius: 4px;
  background-color: rgba(13, 27, 42, 0.5);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

/* Improved select styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

select.form-control option {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 10px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(252, 163, 17, 0.3);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: rgba(20, 33, 61, 0.4);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.accordion-header {
  background: linear-gradient(to right, rgba(20, 33, 61, 0.8), rgba(20, 33, 61, 0.6));
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.accordion-header:hover {
  background: linear-gradient(to right, rgba(20, 33, 61, 0.9), rgba(20, 33, 61, 0.7));
  color: var(--accent-color);
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  font-weight: 300;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
}

.accordion-item input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(13, 27, 42, 0.5);
  transition: all 0.5s ease;
  padding: 0 1.5rem;
}

.accordion-content p {
  margin: 0;
  padding: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
}

.accordion-item input:checked ~ .accordion-header {
  border-left: 4px solid var(--accent-color);
  background: linear-gradient(to right, rgba(20, 33, 61, 0.9), rgba(20, 33, 61, 0.7));
}

.accordion-item input:checked ~ .accordion-header:after {
  content: '−';
  background-color: var(--accent-color);
  color: var(--bg-color);
  font-weight: 600;
}

.accordion-item input:checked ~ .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background-color: rgba(20, 33, 61, 0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.team-member {
  background-color: rgba(20, 33, 61, 0.4);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-member-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-name {
  margin-bottom: 0.5rem;
}

.team-member-position {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, rgba(11, 22, 34, 0.95), rgba(13, 27, 42, 0.95));
  padding: 3rem 0 1rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(224, 225, 221, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-color);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  padding: 1.5rem;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup-content {
  margin-bottom: 1rem;
}

.cookie-popup-actions {
  display: flex;
  justify-content: space-between;
}

/* Legal Pages */
.legal-page {
  padding: 5rem 0;
}

.legal-container {
  background-color: rgba(20, 33, 61, 0.4);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-title {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Thank You Page */
.thanks-page {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: 3rem;
  background-color: rgba(20, 33, 61, 0.4);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
  }
  
  .nav-menu.active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
} 

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
} 