/* Main Stylesheet for Financial Audit Landing Page */

/* Variables */
:root {
  --color-bg: #0E1323;
  --color-accent1: #FCA311;
  --color-accent2: #00C2FF;
  --color-accent3: #E91E63;
  --color-text: #F5F5F5;
  --color-heading: #FFFFFF;
  --color-gradient: linear-gradient(135deg, var(--color-accent2), var(--color-accent3));
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  --glass-blur: blur(10px);
  --transition: all 0.3s ease-in-out;
  --container-max: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 194, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 30%);
}

a {
  color: var(--color-accent2);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent3);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

button, .btn {
  display: inline-block;
  background: var(--color-gradient);
  color: var(--color-heading);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

button:before, .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent3), var(--color-accent2));
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

button:hover:before, .btn:hover:before {
  opacity: 1;
}

/* Container & Layout */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: var(--glass-shadow);
  padding: 30px;
  transition: var(--transition);
}

.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(14, 19, 35, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 30px;
}

nav a {
  color: var(--color-heading);
  font-weight: 500;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gradient);
  transition: var(--transition);
}

nav a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background-image: url('../img/B3Hal1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container {
  width: 100%;
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 19, 35, 0.75);
  z-index: 0;
}

.hero:after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.2) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Our Approach Section */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.approach-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.approach-card h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: var(--color-accent1);
}

.approach-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.approach-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Why Choose Us Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--color-gradient);
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Testimonials Section */
.testimonials-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 30px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  scroll-snap-align: center;
  min-width: 300px;
  width: 100%;
  max-width: 500px;
  margin: 0 15px;
  border-radius: 15px;
  position: relative;
}

.testimonial-content {
  position: relative;
  padding: 50px 30px 30px;
}

.testimonial-content:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  line-height: 0;
  color: var(--color-accent1);
  opacity: 0.2;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--color-accent2);
}

/* Pricing Section */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
  text-align: center;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 15px 0;
}

.plan-features {
  margin: 20px 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.plan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent2);
}

.plan-cta {
  margin-top: auto;
  text-align: center;
}

/* Contact Form Section */
.form-section {
  position: relative;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-accent2);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  from {
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.6), 0 0 40px rgba(0, 194, 255, 0.3);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 15px;
  color: #00c2ff;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent2);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  appearance: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-input {
  margin-top: 5px;
  margin-right: 10px;
}

.checkbox-label {
  font-size: 0.9rem;
}

.checkbox-label a {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-contact li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links h3 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.cookie-popup p {
  margin-bottom: 15px;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    transition: var(--transition);
    z-index: 10;
  }
  
  nav li {
    margin: 15px 0;
  }
}

@media screen and (max-width: 576px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }
  
  .hero {
    text-align: center;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
  }
} 