/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
  /* Color Palette - Monochromatic */
  --primary-color: #222222;
  --primary-light: #444444;
  --primary-dark: #111111;
  --accent-color: #888888;
  --accent-light: #bbbbbb;
  --accent-dark: #666666;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #dddddd;
  --dark-gray: #333333;
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Shadows and Effects */
  --neo-shadow: 8px 8px 0px var(--primary-dark);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-transform: translateY(-5px);
  
  /* Transitions */
  --fast-transition: all 0.3s ease;
  --medium-transition: all 0.5s ease;
  --slow-transition: all 0.8s ease;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: var(--body-font);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: 2.8rem;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

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

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

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

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  transition: var(--fast-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: var(--hover-transform);
  color: var(--white);
}

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

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

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

.btn-hero {
  margin: 10px;
  font-size: 1rem;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: var(--fast-transition);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--accent-color);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 10px;
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--fast-transition);
}

.nav-link:hover:before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.animated-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.animated-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== METHODOLOGY SECTION ===== */
.methodology {
  background-color: var(--light-gray);
}

.methodology-steps {
  margin-bottom: 50px;
}

.methodology-card {
  height: 100%;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--medium-transition);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methodology-card:hover {
  transform: var(--hover-transform);
}

.methodology-card .card-image {
  margin-bottom: 20px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.methodology-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--medium-transition);
}

.methodology-card:hover img {
  transform: scale(1.05);
}

.methodology-card .card-content {
  text-align: center;
}

.methodology-card h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.methodology-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.methodology-stats {
  padding-top: 30px;
}

.stat-widget {
  text-align: center;
  padding: 30px 15px;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--fast-transition);
  margin-bottom: 30px;
}

.stat-widget:hover {
  transform: translateY(-10px);
}

.stat-widget h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-widget p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter {
  display: inline-block;
  font-weight: 700;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories {
  background-color: var(--white);
}

.success-story-card {
  height: 100%;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--medium-transition);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-story-card:hover {
  transform: var(--hover-transform);
}

.success-story-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--medium-transition);
}

.success-story-card:hover img {
  transform: scale(1.05);
}

.success-story-card .card-content {
  padding: 30px;
  text-align: center;
}

.success-story-card h3 {
  margin-bottom: 10px;
}

.success-story-card .industry {
  color: var(--accent-color);
  font-style: italic;
  margin-bottom: 15px;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  background-color: var(--light-gray);
}

.resource-card {
  height: 100%;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--medium-transition);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: var(--hover-transform);
}

.resource-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--medium-transition);
}

.resource-card:hover img {
  transform: scale(1.05);
}

.resource-card .card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.btn-outline-resource {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--fast-transition);
  margin-top: 15px;
}

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

/* ===== CLIENTELE SECTION ===== */
.clientele {
  background-color: var(--white);
}

.clients-gallery {
  margin-bottom: 50px;
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 20px;
  background-color: var(--light-gray);
  border: 3px solid var(--primary-color);
  margin-bottom: 30px;
  transition: var(--fast-transition);
}

.client-logo:hover {
  transform: var(--hover-transform);
  box-shadow: var(--neo-shadow);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--fast-transition);
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.testimonials {
  padding-top: 30px;
}

.testimonial-card {
  height: 100%;
  background-color: var(--light-gray);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--medium-transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: var(--hover-transform);
}

.testimonial-content {
  font-style: italic;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}

.testimonial-content::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  left: -10px;
  top: -40px;
  color: var(--accent-light);
  opacity: 0.4;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.author-info p {
  color: var(--accent-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== ACCOLADES SECTION ===== */
.accolades {
  background-color: var(--light-gray);
}

.accolade-card {
  height: 100%;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--medium-transition);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-card:hover {
  transform: var(--hover-transform);
}

.accolade-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accolade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--medium-transition);
}

.accolade-card:hover img {
  transform: scale(1.05);
}

.accolade-card .card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

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

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  background-color: var(--white);
}

.portfolio-card {
  height: 100%;
  background-color: var(--light-gray);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  transition: var(--medium-transition);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-card:hover {
  transform: var(--hover-transform);
}

.portfolio-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--medium-transition);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card .card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

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

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  background-color: var(--light-gray);
}

.case-study-tabs {
  margin-top: 40px;
}

.nav-tabs {
  border-bottom: 3px solid var(--primary-color);
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.nav-tabs .nav-link {
  background-color: transparent;
  border: none;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 30px;
  margin: 0 5px;
  border-radius: 0;
  position: relative;
  transition: var(--fast-transition);
}

.nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.case-study-content {
  padding: 40px;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
}

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

.case-meta {
  color: var(--accent-color);
  font-style: italic;
  margin-bottom: 20px;
}

.case-study-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.case-study-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.case-study-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.case-study-content img {
  border: 3px solid var(--primary-color);
  margin-bottom: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact-info {
  padding: 30px;
  background-color: var(--light-gray);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.contact-item p {
  margin-bottom: 5px;
}

.contact-map {
  margin-top: 30px;
  border: 3px solid var(--primary-color);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-form {
  padding: 30px;
  background-color: var(--light-gray);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
}

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

.form-control {
  border: 2px solid var(--primary-color);
  border-radius: 0;
  padding: 12px 15px;
  font-family: var(--body-font);
  transition: var(--fast-transition);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' 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 12px center;
  padding-right: 30px;
}

.btn-block {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer h3, .footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-about p {
  color: var(--medium-gray);
}

.footer-about h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-about span {
  color: var(--accent-light);
}

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

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

.footer-links a {
  color: var(--medium-gray);
  transition: var(--fast-transition);
}

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

.footer-services ul li {
  color: var(--medium-gray);
}

.footer-social h4 {
  margin-bottom: 15px;
}

.social-links {
  margin-bottom: 25px;
}

.social-links a {
  display: inline-block;
  color: var(--medium-gray);
  margin-right: 15px;
  transition: var(--fast-transition);
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-newsletter form {
  display: flex;
  margin-top: 15px;
}

.footer-newsletter input {
  flex-grow: 1;
  border: none;
  padding: 10px 15px;
  font-family: var(--body-font);
}

.footer-newsletter button {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0 20px;
  font-family: var(--heading-font);
  font-weight: 600;
  cursor: pointer;
  transition: var(--fast-transition);
}

.footer-newsletter button:hover {
  background-color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--medium-gray);
  margin-left: 20px;
  font-size: 0.9rem;
  transition: var(--fast-transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white);
  z-index: 9999;
}

.cookie-content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  color: var(--white);
  padding-right: 20px;
}

.btn-accept {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--fast-transition);
}

.btn-accept:hover {
  background-color: var(--accent-light);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.success-container {
  max-width: 600px;
  padding: 50px;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  box-shadow: var(--neo-shadow);
}

.success-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

.success-container h1 {
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 30px;
}

/* ===== STATIC PAGES (Privacy, Terms) ===== */
.static-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.static-page h1 {
  margin-bottom: 30px;
}

.static-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.static-page ul li {
  margin-bottom: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 991px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.3rem;
  }
  
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 120px 0;
  }
  
  .nav-tabs .nav-link {
    padding: 10px 15px;
  }
  
  .case-study-content {
    padding: 20px;
  }
  
  .footer {
    padding-top: 50px;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }
  
  .footer-legal a {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
  
  .nav-tabs .nav-link {
    white-space: nowrap;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .static-page {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .methodology-card,
  .success-story-card,
  .testimonial-card,
  .accolade-card,
  .portfolio-card,
  .contact-info,
  .contact-form {
    padding: 20px;
  }
  
  .case-study-content {
    padding: 15px;
  }
  
  .success-container {
    padding: 30px;
  }
}