/* State Support Newsletter Service - Main Styles */

:root {
  /* Primary Color Palette */
  --primary-color-1: #2c5f2d;  /* Forest Green */
  --primary-color-2: #97bc62;  /* Light Green */
  --primary-color-3: #e8b04b;  /* Golden Orange */
  --primary-color-4: #4a4a4a;  /* Charcoal Gray */
  --primary-color-5: #8b5a3c;  /* Warm Brown */
  
  /* Light/Dark Shades */
  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #212529;
  --dark-shade-2: #343a40;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-2) 100%);
  --gradient-secondary: linear-gradient(45deg, var(--primary-color-3) 0%, var(--primary-color-2) 100%);
  --gradient-accent: linear-gradient(90deg, var(--primary-color-4) 0%, var(--primary-color-5) 100%);
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-p: 1rem;
  --font-size-small: 0.875rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-shade-1);
  background-color: var(--light-shade-1);
}

/* Typography - Conservative Sizes */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--primary-color-4);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-p);
  margin-bottom: 1rem;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: white !important;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  background: rgba(255,255,255,0.1);
  border-radius: 0.25rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-h1);
  background: linear-gradient(45deg, var(--primary-color-1), var(--primary-color-5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  color: var(--primary-color-4);
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: var(--font-size-p);
  color: var(--dark-shade-2);
  max-width: 40ch;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: blob 15s ease-in-out infinite;
}

.shape-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color-2);
  top: -200px;
  left: -200px;
}

.shape-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-color-3);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Section Styles */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, var(--light-shade-1) 0%, var(--light-shade-2) 100%);
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: var(--light-shade-1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: var(--font-size-h4);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
  margin-bottom: 1rem;
}

.service-features {
  font-size: var(--font-size-small);
  color: var(--primary-color-4);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-price {
  font-size: var(--font-size-h3);
  color: var(--primary-color-3);
  font-weight: 700;
}

/* Team Section */
.team-section {
  background: var(--gradient-accent);
  color: white;
}

.team-section .section-title h2 {
  color: white;
}

.team-section .section-title h2::after {
  background: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid rgba(255,255,255,0.3);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: var(--font-size-h5);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: var(--font-size-small);
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-shade-2);
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'FontAwesome';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: var(--primary-color-2);
  opacity: 0.2;
}

.testimonial-text {
  font-size: var(--font-size-p);
  color: var(--dark-shade-2);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-h5);
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  background: white;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
  background: var(--light-shade-1);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: white;
  border: 1px solid var(--light-shade-2);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--primary-color-2);
  color: white;
}

.faq-question::after {
  content: '\f078';
  font-family: 'FontAwesome';
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: white;
  border: 1px solid var(--light-shade-2);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Form Section */
.contact-section {
  background: var(--gradient-secondary);
  color: var(--dark-shade-1);
}

.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--primary-color-4);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-p);
  border: 2px solid var(--light-shade-2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  outline: none;
  box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: var(--font-size-p);
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
}

/* Contact Info */
.contact-info {
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-color-3);
}

/* Blog Section */
.blog-section {
  background: white;
}

.blog-card {
  background: var(--light-shade-1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-h5);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color-3);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-small);
}

.blog-link:hover {
  color: var(--primary-color-1);
}

/* Footer */
.footer {
  background: var(--dark-shade-1);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-brand {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: var(--font-size-small);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: var(--font-size-h5);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: var(--font-size-small);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-disclaimer {
  font-size: var(--font-size-small);
  opacity: 0.6;
  margin-top: 2rem;
}

.footer-copyright {
  background: var(--dark-shade-2);
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
}

.footer-copyright small {
  font-size: var(--font-size-small);
  opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: var(--font-size-small);
}

.breadcrumb-image {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Process Section */
.process-section {
  background: var(--light-shade-1);
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-h4);
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-content {
  width: 45%;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.process-item:nth-child(even) .process-content {
  margin-left: auto;
}

/* Timeline Section */
.timeline-section {
  background: white;
}

.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--primary-color-3);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  bottom: -1.5rem;
  width: 1px;
  background: var(--light-shade-2);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-title {
  font-size: var(--font-size-h5);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.timeline-description {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
}

/* Career Section */
.career-section {
  background: var(--gradient-accent);
  color: white;
}

.career-section .section-title h2 {
  color: white;
}

.career-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(10px);
}

.career-title {
  font-size: var(--font-size-h4);
  margin-bottom: 0.5rem;
}

.career-role {
  font-size: var(--font-size-small);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.career-description {
  font-size: var(--font-size-small);
  opacity: 0.8;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--light-shade-2);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coreinfo-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-size: var(--font-size-h5);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.coreinfo-description {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
}

/* Features Section */
.features-section {
  background: white;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
  display: block;
}

.feature-name {
  font-size: var(--font-size-h5);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-shade-1);
}

.price-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  border: 3px solid var(--primary-color-3);
}

.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color-3);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: var(--font-size-small);
  font-weight: 600;
}

.price-name {
  font-size: var(--font-size-h4);
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: var(--font-size-h2);
  color: var(--primary-color-3);
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-features {
  font-size: var(--font-size-small);
  color: var(--dark-shade-2);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.price-description {
  font-size: var(--font-size-small);
  color: var(--primary-color-4);
}

/* Case Study Section */
.casestudy-section {
  background: white;
}

.casestudy-card {
  background: var(--gradient-secondary);
  border-radius: 1rem;
  padding: 2rem;
  color: var(--dark-shade-1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.casestudy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.casestudy-content {
  position: relative;
  z-index: 2;
}

.casestudy-title {
  font-size: var(--font-size-h4);
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.casestudy-desc {
  font-size: var(--font-size-p);
  color: var(--dark-shade-2);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-shade-2);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-1 {
  background: var(--gradient-primary);
}

.bg-gradient-2 {
  background: var(--gradient-secondary);
}

.bg-gradient-3 {
  background: var(--gradient-accent);
}

/* Swiper Customization */
.swiper {
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-color-2);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color-1);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-1);
}

/* Owl Carousel Customization */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: var(--primary-color-1);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: var(--primary-color-3);
}

.owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
  background: var(--primary-color-2);
  opacity: 0.5;
}

.owl-carousel .owl-dots .owl-dot.active span {
  opacity: 1;
  background: var(--primary-color-1);
} 