/* Main Styles for domain.com - Financial Audit Services */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  background-color: #ffffff;
  color: #1b1b1b;
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f1035;
  margin-bottom: 1rem;
}

a {
  color: #f25c05;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0f1035;
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background-color: #f25c05;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #0f1035;
  color: white;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f25c05;
  margin: 10px auto;
}

/* Header Styles */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #0f1035;
}

.logo:hover {
  color: #f25c05;
}

/* Navigation Menu */
.hamburger-menu {
  display: none;
}

.hamburger-label {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #0f1035;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #0f1035;
  font-weight: 500;
}

nav ul li a:hover {
  color: #f25c05;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 16, 53, 0.7), rgba(15, 16, 53, 0.7)),
    url("./img/fuXxC.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: #eef5ff;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
}

/* Benefits Section */
.benefits {
  background-color: #eef5ff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* Process Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.process-step {
  flex: 0 0 280px;
  margin: 15px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: scale(1.03);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #f25c05;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #0f1035;
}

/* Form Section */
.form-section {
  background-color: #eef5ff;
}

.form-container {
  background: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #0f1035;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

select.form-control {
  background-color: white;
  cursor: pointer;
}

select.form-control option {
  background-color: white;
  color: #1b1b1b;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.error-message {
  color: red;
  margin-top: 5px;
  font-size: 0.9rem;
}

/* Thank you page styling */
.thank-you-container {
  max-width: 600px;
  margin: 8rem auto 5rem;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  display: block;
  padding: 1rem;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: white;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  color: #0f1035;
}

.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #f25c05;
  transition: transform 0.3s ease;
}

.faq-checkbox:checked + .faq-label::after {
  transform: rotate(45deg);
  content: "+";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #eef5ff;
  transition: max-height 0.3s ease;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-content {
  padding: 15px 20px;
}

/* Footer */
footer {
  background-color: #0f1035;
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #f25c05;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #eef5ff;
}

.footer-links a:hover {
  color: #f25c05;
}

.contact-info {
  margin-bottom: 10px;
}

.contact-info i {
  color: #f25c05;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #eef5ff;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 8rem auto 5rem;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  margin-bottom: 2rem;
}

.policy-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0f1035;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-accept {
  background-color: #f25c05;
  color: white;
}

.hidden {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-content {
    padding: 15px 0;
  }

  .hamburger-label {
    display: block;
  }

  .hamburger-menu {
    display: none;
  }

  .hamburger-menu:checked ~ nav {
    height: auto;
    max-height: 300px;
    opacity: 1;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    padding: 10px 0;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 10px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 20px;
  }
}
