/* 
* Saturscocc - Financial Services Website
* Main Stylesheet
*/

/* Base Styles & Typography */
:root {
  --primary-color: #1d3557;
  --secondary-color: #457b9d;
  --accent-color: #e63946;
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.section-subheading {
  color: var(--gray-color);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.bg-light {
  background-color: var(--light-color);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--gray-color);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white!important;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #17294d;
  color: white;
  border-color: #17294d;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #3a6987;
  color: white;
  border-color: #3a6987;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-link {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.btn-link:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.btn-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header & Navigation */
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  flex: 0 0 200px;
}

.logo {
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list li a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-list li a:hover:after, .nav-list li a.active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-list li a.active {
  color: var(--primary-color);
}

.nav-list li a.btn {
  padding: 0.5rem 1rem;
}

.nav-list li a.btn:after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background-color: var(--light-color);
  overflow: hidden;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 0 0 50%;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 0 0 45%;
  text-align: center;
}

/* About Section */
.about-section {
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--gray-color);
}

/* Services Section */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial-card.active {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0.4}
  to {opacity: 1}
}

.testimonial-content {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote-icon {
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--gray-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.slider-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0 10px;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Blog Section */
.blog-preview-section {
  position: relative;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-container {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.blog-card h3 a {
  color: var(--dark-color);
}

.blog-card h3 a:hover {
  color: var(--secondary-color);
}

.blog-view-all {
  text-align: center;
  margin-top: 50px;
}

/* Blog Grid Page */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.blog-grid-section {
  position: relative;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.filter-options {
  display: flex;
  align-items: center;
}

.filter-options label {
  margin-right: 10px;
}

.filter-options select {
  padding: 8px 15px;
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
  background-color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
}

.pagination-item:hover, .pagination-item.active {
  background-color: var(--primary-color);
  color: white;
}

.pagination-item.next {
  width: auto;
  border-radius: var(--border-radius);
  padding: 0 15px;
  display: flex;
  gap: 5px;
}

.pagination-separator {
  margin: 0 5px;
}

/* Article Page */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.article-category {
  color: var(--secondary-color);
  font-weight: 500;
}

.article-featured-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
}

.article-body {
  font-size: 1.1rem;
}

.article-intro {
  font-size: 1.3rem;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.article-body h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.article-comparison {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.comparison-column {
  flex: 1;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
}

.comparison-column h3 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.article-highlight {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.article-highlight h3 {
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.article-highlight h3:first-child {
  margin-top: 0;
}

.article-tips {
  margin: 30px 0;
}

.tip-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tip-icon {
  flex: 0 0 50px;
  color: var(--secondary-color);
}

.tip-content h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.tip-content p {
  margin-bottom: 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-table th, .article-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.article-table th {
  background-color: var(--light-color);
  font-weight: 600;
}

.article-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.article-cta {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  text-align: center;
}

.article-cta h3 {
  color: white;
  margin-bottom: 15px;
}

.article-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.article-cta .btn {
  background-color: white;
  color: var(--primary-color);
  border: none;
}

.article-cta .btn:hover {
  background-color: var(--light-color);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.share-button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Contact Page */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.info-items {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content h3 {
  margin-bottom: 10px;
}

.contact-map {
  margin-top: 30px;
}

.map-container {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background-color: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
}

.faq-icon {
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Thank You Page */
.thanks-section {
  text-align: center;
  padding: 100px 0;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.confirmation-details {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: left;
  margin-bottom: 40px;
}

.details-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.details-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 500;
}

.next-steps {
  margin-bottom: 40px;
}

.steps-container {
  margin-top: 30px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h3 {
  margin-bottom: 10px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Recommended Articles */
.recommended-articles {
  padding-top: 0;
}

/* Footer */
.main-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 20px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
}

.cookie-options {
  margin-bottom: 20px;
}

.cookie-option {
  margin-bottom: 15px;
}

.cookie-description {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: 25px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cookie-policy-link {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }