/* 
* Finanzaudit Website Stylesheet
* Colors:
* - Background: #101F2C (deep sea blue)
* - Accent: #FFD447 (warm amber-yellow)
* - Secondary accent: #00A3A3 (deep turquoise)
* - Text: #F5F7FA (light almost white)
* - Buttons: gradient from #FFD447 to #00A3A3
*/

/* Global Styles */
:root {
  --bg-color: #101F2C;
  --accent-color: #FFD447;
  --secondary-color: #00A3A3;
  --text-color: #F5F7FA;
  --gradient: linear-gradient(to right, #FFD447, #00A3A3);
  --container-width: 1200px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 80px;
  background: var(--gradient);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 5px rgba(255, 212, 71, 0.5);
}

section {
  padding: 100px 0 80px;
}

/* Fix for header overlapping with section titles when navigating via anchor links */
html {
  scroll-padding-top: 100px; /* Add padding to account for fixed header */
}

/* First section needs more top padding */
section:first-of-type {
  padding-top: 120px;
}

/* Make policy pages start further down to avoid header overlap */
.policy-page {
  padding-top: 150px;
}

/* Make images smaller in advantages and testimonials sections */
.advantages-image {
  max-width: 600px;
  margin: 0 auto 40px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-image {
  max-width: 600px;
  margin: 0 auto 40px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Button Styles */
.btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--bg-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
  color: var(--bg-color);
  outline: 2px solid rgba(255, 255, 255, 0.3);
}

/* Domain Text Style */
.domain-text {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(16, 31, 44, 0.95);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(16, 31, 44, 0.8), rgba(16, 31, 44, 0.95)), url('./img/1P6hCe.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Policy Page Style */
.policy-page {
  padding: 120px 0 60px;
}

.policy-content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}

.policy-content h2 {
  color: var(--accent-color);
  margin-top: 40px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin-top: 30px;
  font-size: 1.3rem;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-content ul li {
  margin-bottom: 10px;
}

.mt-5 {
  margin-top: 50px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services {
  background-color: rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to bottom, rgba(16, 31, 44, 0.9), rgba(16, 31, 44, 0.95)), url('./img/972ylw.jpg');
  background-size: cover;
  background-position: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  outline: 1px solid rgba(255, 212, 71, 0.3);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 20px;
}

/* Advantages Section */
.advantages-section {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.advantages-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.advantages-image img {
  width: 100%;
  height: auto;
  display: block;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.advantage-icon {
  background: var(--gradient);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.advantage-content h4 {
  margin-bottom: 10px;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50px;
  right: -15%;
  width: 30%;
  height: 3px;
  background: var(--gradient);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-color);
  margin: 0 auto 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(0, 0, 0, 0.1);
}

.testimonials-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.testimonials-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
}

.client-name {
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 20px;
}

/* Contact Form Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color:   #ffffff;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 212, 71, 0.3);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check label {
  font-size: 0.9rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer Section */
footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 60px 0 30px;
  background-image: linear-gradient(to bottom, rgba(16, 31, 44, 0.95), rgba(16, 31, 44, 0.98)), url('./img/2YiyFQ.jpg');
  background-size: cover;
  background-position: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 20px;
}

.footer-links h4 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

.contact-info {
  margin-top: 20px;
}

.contact-info div {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info span:first-child {
  margin-right: 10px;
  color: var(--accent-color);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(16, 31, 44, 0.95);
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-text {
  flex-grow: 1;
  padding-right: 20px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accept-cookies {
  background: var(--gradient);
  color: var(--bg-color);
  border: none;
}

.decline-cookies {
  background: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  .about-content,
  .services-container,
  .process-steps,
  .testimonials-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .process-step:not(:last-child):after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Adjust mobile menu positioning */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  nav ul {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  nav ul.active {
    left: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
} 