/* Main CSS file for domain.com - Financial Audit Company */

:root {
  --purple: #BF00FF;
  --cyan: #00FFF7;
  --navy: #0D1B2A;
  --white: #FAFAFA;
  --orange: #FFA500;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--purple);
}

h3 {
  font-size: 1.8rem;
  color: var(--purple);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--cyan);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.btn:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--orange);
}

.btn-secondary:hover {
  background: var(--cyan);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--navy);
  font-weight: 600;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--purple);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('../img/XFvJ2D.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  color: var(--white);
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 0 auto;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 6rem 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content {
  flex: 1;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy), #1a2f4a);
  color: var(--white);
}

.benefit-cards {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--cyan);
}

/* Services Section */
.services {
  padding: 6rem 0;
}

.service-cards {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f5f5f5;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.testimonial-cards::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 400px;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(191, 0, 255, 0.1);
  font-family: serif;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.client-name {
  font-weight: 600;
  color: var(--navy);
}

.client-role {
  color: #666;
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-us {
  padding: 6rem 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--purple);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(191, 0, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--purple);
}

/* Form Section */
.contact-form {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(191, 0, 255, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-label {
  font-size: 0.9rem;
}

.checkbox-label a {
  text-decoration: underline;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact-container {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--purple);
  font-size: 1.5rem;
}

.contact-map {
  flex: 1;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--purple);
  margin-top: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  max-width: 400px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-content {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
}

/* Policy Pages */
.policy-content {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 3rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--navy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.policy-content p, 
.policy-content ul, 
.policy-content ol {
  margin-bottom: 1.5rem;
}

.policy-content ul, 
.policy-content ol {
  padding-left: 2rem;
}

/* Thank You Page */
.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-container {
  max-width: 700px;
  padding: 3rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Animations */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-container, .contact-container {
    flex-direction: column;
  }
  
  .about-image, .contact-map {
    width: 100%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .mobile-menu {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 2rem;
  }
  
  nav ul li {
    margin: 1rem 0;
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.2rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .testimonial-card {
    flex: 0 0 300px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
} 