/* 
 * Main stylesheet for domain.com
 * Financial audit services website
 */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #072540 0%, #09384f 100%);
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  color: #afff61;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffa07a;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #afff61;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #ffb347;
  color: #072540;
}

.btn-primary:hover {
  background-color: #ffa07a;
  color: #072540;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #afff61;
  border: 2px solid #afff61;
}

.btn-secondary:hover {
  background-color: #afff61;
  color: #072540;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation */
.site-header {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 37, 64, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-svg {
  margin-right: 8px;
  width: 35px;
  height: 35px;
}

.logo-text {
  color: #ffffff;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-nav .nav-list li {
  margin-left: 25px;
  display: flex;
  align-items: center;
}

.main-nav .nav-list li a {
  color: #d3d3d3;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav .nav-list li a:hover {
  color: #afff61;
}

.main-nav .nav-list li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #afff61;
  transition: width 0.3s ease;
}

.main-nav .nav-list li a:hover:after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  background-color: #072540;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 15px;
}

.mobile-nav-list li a {
  color: #d3d3d3;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(7, 37, 64, 0.8) 0%, rgba(9, 56, 79, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(175, 255, 97, 0.2) 0%, rgba(175, 255, 97, 0) 70%);
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #d3d3d3;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero .accent {
  color: #afff61;
  position: relative;
}

/* About Section */
.about {
  background-color: rgba(7, 37, 64, 0.7);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
  background-color: rgba(9, 56, 79, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: rgba(7, 37, 64, 0.5);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #afff61;
}

.benefit-card h3 {
  color: #afff61;
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: rgba(7, 37, 64, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: rgba(9, 56, 79, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.service-card h3, .service-card p {
  padding: 0 20px;
}

.service-card h3 {
  margin-top: 20px;
  color: #afff61;
}

.service-card p {
  padding-bottom: 20px;
  color: #d3d3d3;
}

/* Process Section */
.process {
  background-color: rgba(9, 56, 79, 0.7);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  height: calc(100% + 30px);
  width: 2px;
  background-color: rgba(175, 255, 97, 0.3);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #afff61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #072540;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-left: 30px;
}

.step-content h3 {
  color: #afff61;
  margin-bottom: 10px;
}

/* Why Us Section */
.why-us {
  background-color: rgba(7, 37, 64, 0.7);
}

.why-us-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.why-us-text ul {
  list-style-type: none;
  padding-left: 0;
}

.why-us-text li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.why-us-text li:before {
  content: '✓';
  color: #afff61;
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(9, 56, 79, 0.7);
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: rgba(7, 37, 64, 0.5);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  color: rgba(175, 255, 97, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #afff61;
  font-weight: 600;
  text-align: right;
}

/* Contact Form Section */
.contact {
  background-color: rgba(7, 37, 64, 0.7);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(9, 56, 79, 0.5);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(175, 255, 97, 0.2);
  border-radius: 4px;
  background-color: rgba(7, 37, 64, 0.7);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #afff61;
  box-shadow: 0 0 0 2px rgba(175, 255, 97, 0.2);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-group.checkbox label {
  margin-bottom: 0;
}

/* Thank You Page */
.thank-you {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-image {
  margin: 30px 0;
}

/* Policy Pages */
.policy-page {
  padding: 100px 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  text-align: center;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 1.5rem;
  text-align: left;
  padding-bottom: 0;
  margin-top: 40px;
}

.policy-content h2:after {
  display: none;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 30px;
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content address {
  margin-top: 30px;
  font-style: normal;
}

/* Footer */
.site-footer {
  background-color: rgba(7, 37, 64, 0.95);
  padding: 80px 0 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: #afff61;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-description {
  color: #d3d3d3;
  margin-top: 15px;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d3d3d3;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #afff61;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #d3d3d3;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(7, 37, 64, 0.95);
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-popup p {
  margin: 0 20px 0 0;
  flex: 1;
}

.cookie-popup button {
  background-color: #afff61;
  color: #072540;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: #ff7f50;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cookie-popup {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-popup p {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card, .service-card, .testimonial {
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    padding: 20px;
  }
}

.btn.btn-secondary {
  padding: 8px 20px;
  font-size: 0.85rem;
} 