/* 
 * Main stylesheet for financial audit company website
 * Colors:
 * - Background: #F7F2D6 (warm light yellow)
 * - Accent 1: #DA4FFF (neon purple)
 * - Accent 2: #00CFFF (electric blue)
 * - Text: #333 (dark gray)
 * - Gradient: #00CFFF to #DA4FFF
 * Fonts: Montserrat and Lora
 */

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #F7F2D6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #DA4FFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #00CFFF, #DA4FFF);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.btn--gradient {
  background: linear-gradient(to right, #00CFFF, #DA4FFF);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(218, 79, 255, 0.3);
}

.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 79, 255, 0.4);
  color: #fff;
}

.btn--outline {
  border: 2px solid #00CFFF;
  color: #333;
  background: transparent;
}

.btn--outline:hover {
  background: linear-gradient(to right, #00CFFF, #DA4FFF);
  color: #fff;
  border-color: transparent;
}

.btn--text {
  padding: 8px 16px;
  color: #333;
  background: transparent;
  text-decoration: underline;
}

.btn--text:hover {
  color: #DA4FFF;
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img, .header__logo svg {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style-type: none;
}

.nav__item {
  margin: 0 15px;
}

.nav__link {
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav__link:hover, .nav__link.active {
  color: #DA4FFF;
}

.header__cta {
  margin-left: 20px;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  height: auto;
}

.mobile-menu__list {
  list-style-type: none;
  padding: 20px;
}

.mobile-menu__item {
  margin: 15px 0;
}

.mobile-menu__link {
  display: block;
  font-weight: 500;
  padding: 10px 0;
}

/* Hero Section */
.hero {
  padding: 100px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  flex: 1;
}

.hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero__content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero__image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about__text {
  flex: 1;
}

.about__image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3, .service-card p {
  padding: 0 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card .btn {
  margin: 20px;
}

/* Advantages Section */
.advantages {
  background-color: #fff;
  border-radius: 0;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  padding: 30px;
  text-align: center;
  background-color: #F7F2D6;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials__slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, #00CFFF, #DA4FFF) 1;
}

.testimonials__more {
  margin-top: 40px;
  text-align: center;
}

/* Contact Section */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact__info {
  background: linear-gradient(135deg, #00CFFF, #DA4FFF);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.contact__info h3 {
  color: #fff;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item svg {
  margin-right: 15px;
  min-width: 24px;
}

.contact__form {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form {
  display: grid;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form__group input,
.form__group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: inherit;
}

.form__group--checkbox {
  flex-direction: row;
  align-items: center;
}

.form__group--checkbox input {
  margin-right: 10px;
  height: 18px;
  width: 18px;
  min-width: 18px;
}

.form__group--checkbox label {
  margin-bottom: 0;
}

.form__group--checkbox a {
  border-bottom: 1px solid;
}

.form__submit {
  margin-top: 20px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img,
.footer__logo svg {
  height: 40px;
  width: auto;
}

.footer__about p {
  margin-top: 20px;
  color: #aaa;
}

.footer__heading {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #00CFFF, #DA4FFF) 1;
  display: inline-block;
}

.footer__links {
  list-style: none;
}

.footer__link-item {
  margin-bottom: 10px;
}

.footer__link {
  color: #aaa;
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 15px 0;
  z-index: 1100;
  transition: bottom 0.3s ease;
  opacity: 0;
}

.cookie-banner.active {
  bottom: 0;
  opacity: 1;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-banner__content p {
  margin-bottom: 0;
}

.cookie-banner__content a {
  color: #00CFFF;
  text-decoration: underline;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 120px 0;
}

.thank-you__icon {
  font-size: 5rem;
  margin-bottom: 30px;
  background: linear-gradient(to right, #00CFFF, #DA4FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Policy Pages */
.policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px;
}

.policy h1 {
  margin-bottom: 40px;
  text-align: center;
}

.policy h2 {
  margin-top: 40px;
  text-align: left;
}

.policy h2::after {
  left: 0;
  transform: none;
}

.policy p {
  margin-bottom: 20px;
}

.policy ul, .policy ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy li {
  margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    flex-direction: column-reverse;
  }
  
  .about__content {
    flex-direction: column;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
  }
  
  .hero, section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  header {
    position: relative;
  }
  
  .nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonials__slider {
    flex-direction: column;
  }
  
  .services__cards {
    grid-template-columns: 1fr;
  }
  
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero__content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .header__logo img, .header__logo svg {
    height: 30px;
  }
  
  .contact__info, .contact__form {
    padding: 20px;
  }
} 