/* Main CSS for Lisbon Consultancy */

:root {
  /* Color Palette */
  --primary-color-1: #4e6e81; /* Deep teal blue */
  --primary-color-2: #f9b384; /* Soft coral */
  --primary-color-3: #eeeeee; /* Light gray */
  --primary-color-4: #2e4057; /* Dark navy */
  --primary-color-5: #e8c07d; /* Golden sand */
  
  /* Shades and tints */
  --primary-color-1-light: #6a8a9d;
  --primary-color-1-dark: #3c5c6f;
  --primary-color-2-light: #fcc9a6;
  --primary-color-2-dark: #e79c62;
  --primary-color-3-light: #f9f9f9;
  --primary-color-3-dark: #dddddd;
  --primary-color-4-light: #465a71;
  --primary-color-4-dark: #1a2a3d;
  --primary-color-5-light: #f2d49b;
  --primary-color-5-dark: #d0aa5f;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
}

/* Global Styles */
html, body {
  font-family: var(--font-primary);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  padding: var(--section-padding);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: #333;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

/* Header */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-4);
}

.nav-link {
  font-weight: 500;
  color: var(--primary-color-4) !important;
  margin: 0 10px;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-2);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover:before {
  visibility: visible;
  width: 100%;
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Section Titles */
.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
}

.section-subtitle {
  font-family: var(--font-primary);
  color: var(--primary-color-1);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-feature {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-3-light);
}

.service-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 30px;
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-price {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color-2);
  color: #333;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 15px;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--primary-color-3-light);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color-1);
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-3-light);
}

.price-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  text-align: center;
  padding-bottom: 30px;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-color-1);
  color: #fff;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
}

.price-features {
  padding-left: 0;
  list-style: none;
  margin: 30px 0;
}

.price-features li {
  margin-bottom: 15px;
  padding: 0 30px;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-member {
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.team-name {
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
}

.review-item:after {
  content: '\f10e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--primary-color-3-dark);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
  margin-bottom: 15px;
  display: block;
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--primary-color-3-light);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Contact Form Section */
.contact-section {
  background-color: var(--primary-color-3-light);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--primary-color-3-dark);
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 5px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  height: 150px;
  padding-top: 15px;
}

.form-check-label {
  font-size: 14px;
  color: #666;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-post {
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 20px;
  background-color: #fff;
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-color-3-light);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: #fff;
  color: var(--primary-color-4);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.accordion-body {
  padding: 20px;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-color-4);
  color: #fff;
  padding: 60px 0 0;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color-2);
}

#contact-info-phone, 
#contact-info-email, 
#contact-info-address {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

#contact-info-phone:before, 
#contact-info-email:before, 
#contact-info-address:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

#contact-info-phone:before {
  content: '\f095';
}

#contact-info-email:before {
  content: '\f0e0';
}

#contact-info-address:before {
  content: '\f3c5';
}

.footer-bottom {
  background-color: var(--primary-color-4-dark);
  padding: 20px 0;
  margin-top: 40px;
}

#site-copyright {
  margin-bottom: 0;
} 