/* Main Styles for domain - Accounting Services */

:root {
  --primary-bg: #0F172A;
  --accent-amber: #D97706;
  --accent-mint: #10B981;
  --text-light: #F1F5F9;
  --text-heading: #E2E8F0;
  --accent-gold: #F59E0B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-amber);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-mint);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-mint));
  color: var(--text-heading);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: white;
}

/* Header Styles */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(15, 23, 42, 0.9);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-heading);
  text-decoration: none;
}

.logo span {
  color: var(--accent-amber);
}

/* Navigation Styles */
.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
}

.nav-desktop li {
  margin-left: 30px;
}

.nav-desktop a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-amber), var(--accent-mint));
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-heading);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg);
  z-index: 999;
  padding-top: 80px;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  margin: 20px 0;
  text-align: center;
}

.nav-mobile a {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-bg);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-mint));
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-cta {
  animation: fadeInUp 1s 0.6s ease both;
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-amber), var(--accent-mint));
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.8);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-amber), var(--accent-mint));
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-mint));
  border-radius: 50%;
  color: var(--text-heading);
  font-size: 2rem;
}

/* Services Section */
.services {
  padding: 100px 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.service-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.service-card p {
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.8);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-amber);
  position: absolute;
}

.testimonial-text::before {
  left: 0;
  top: -10px;
}

.testimonial-text::after {
  right: 0;
  bottom: -20px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--accent-gold);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  font-size: 1rem;
  border-radius: 0;
}

.faq-question span {
  transition: all 0.3s ease;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: rgba(15, 23, 42, 0.4);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

/* Contact Form Section */
.contact {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.8);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(15, 23, 42, 0.6);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 15px;
  color: var(--text-light);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: 5px;
  color: var(--text-light);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-amber);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background-color: var(--primary-bg);
  padding: 0 5px;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-group input {
  margin-right: 10px;
}

/* Stats Section */
.stats {
  padding: 100px 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  background-color: rgba(15, 23, 42, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.stat-text {
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 60px 0 20px;
  background-color: rgba(15, 23, 42, 0.9);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-heading);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  color: var(--accent-amber);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--accent-amber);
  margin-right: 10px;
}

.footer-links h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-amber), var(--accent-mint));
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(15, 23, 42, 0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  max-width: 400px;
  transform: translateX(150%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateX(0);
}

.cookie-consent p {
  margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInAnimation 1.2s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Policy Pages */
.policy-page {
  padding: 120px 0 60px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(15, 23, 42, 0.6);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(226, 232, 240, 0.1);
}

.policy-container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.policy-container h2 {
  margin-top: 30px;
  color: var(--accent-gold);
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

/* Thank You Page */
.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  max-width: 600px;
  width: 100%;
  padding: 40px;
  background-color: rgba(15, 23, 42, 0.6);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease;
  margin: 0 auto;
}

.thank-you h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.thank-you p {
  margin-bottom: 30px;
  text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .benefits-cards,
  .services-cards {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}
