/* Main Stylesheet for Financial Insight Audit */

/* Color Palette */
:root {
  --midnight-blue: #003049;
  --burnt-orange: #F77F00;
  --mint-cream: #F1FAEE;
  --steel-gray: #264653;
  --soft-lemon: #FFE66D;
  --ruby-red: #D62828;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--steel-gray);
  background-color: var(--midnight-blue);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--burnt-orange);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ruby-red);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--soft-lemon);
  color: var(--midnight-blue);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--burnt-orange);
  color: var(--mint-cream);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--soft-lemon);
  color: var(--soft-lemon);
}

.btn-secondary:hover {
  background-color: var(--soft-lemon);
  color: var(--midnight-blue);
}

/* Header */
header {
  background-color: var(--midnight-blue);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--mint-cream);
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--burnt-orange);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(0, 48, 73, 0.8) 0%, rgba(0, 48, 73, 0.7) 100%), url('../img/8ssPo0.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--mint-cream);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease;
}

.hero-cta {
  animation: fadeInUp 1.4s ease;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: auto;
  z-index: 1;
  animation: fadeInRight 1.5s ease;
}

/* About Section */
#about {
  padding: 100px 0;
  background-color: var(--mint-cream);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--midnight-blue);
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: rotate(0);
}

/* Services Section */
#services {
  padding: 100px 0;
  background-color: var(--midnight-blue);
  color: var(--mint-cream);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(241, 250, 238, 0.1);
  border-radius: 10px;
  padding: 30px;
  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-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--burnt-orange);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Benefits Section */
#benefits {
  padding: 100px 0;
  background-color: var(--mint-cream);
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--midnight-blue);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  background-color: var(--soft-lemon);
  color: var(--midnight-blue);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--midnight-blue);
}

/* Pricing Section */
#pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--midnight-blue) 0%, rgba(0, 48, 73, 0.9) 100%);
  color: var(--mint-cream);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background-color: rgba(241, 250, 238, 0.05);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--burnt-orange), var(--soft-lemon));
}

.pricing-card.featured {
  transform: scale(1.05);
  background-color: rgba(241, 250, 238, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--burnt-orange);
  color: var(--mint-cream);
  padding: 5px 30px;
  font-size: 0.8rem;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--burnt-orange);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(241, 250, 238, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Form Section */
#contact {
  padding: 100px 0;
  background-color: var(--mint-cream);
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--midnight-blue);
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--burnt-orange), var(--soft-lemon));
  border-radius: 20px;
  z-index: -1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--steel-gray);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--burnt-orange);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-check input {
  margin-right: 10px;
}

.form-check label {
  font-size: 0.9rem;
}

.form-check a {
  color: var(--burnt-orange);
}

/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background-color: var(--midnight-blue);
  color: var(--mint-cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(241, 250, 238, 0.05);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--burnt-orange);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
footer {
  background-color: var(--steel-gray);
  color: var(--mint-cream);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--mint-cream);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--burnt-orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact-item i {
  margin-right: 10px;
  color: var(--burnt-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(241, 250, 238, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--steel-gray);
  color: var(--mint-cream);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-text h3 {
  margin-bottom: 5px;
}

.cookie-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-consent .btn {
  flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease;
}

/* Curved Dividers */
.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.curve-divider .shape-fill {
  fill: var(--mint-cream);
}

.curve-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.curve-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.curve-divider-top .shape-fill {
  fill: var(--midnight-blue);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    width: 70%;
    opacity: 0.3;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .contact-form::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .pricing-card,
  .service-card,
  .testimonial-card {
    padding: 20px;
  }
  
  .contact-form {
    padding: 25px;
  }
} 