
:root {
  --primary: #2D3047;
  --secondary: #FF6B6B;
  --tertiary: #4ECDC4;
  --bg-light: #F7F9FC;
  --bg-dark: #161925;
  --text-primary: #333F4D;
  --text-secondary: #697A8D;
  --text-light: #F9F9F9;
  --border: #E4E9F2;
  --success: #36B37E;
  --warning: #FFAB00;
  --error: #FF5630;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --sidebar-width: 20%;
  --content-width: 80%;
  --header-height: 60px;
}


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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: none;
}

button, .btn {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  border: none;
  background: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.6rem;
}


.app-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background-color: var(--primary);
  color: var(--text-light);
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  transition: var(--transition);
  z-index: 1000;
}

.main-content {
  width: var(--content-width);
  margin-left: var(--sidebar-width);
  transition: var(--transition);
}


.sidebar-header {
  padding: 2.4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  max-height: 40px;
  width: auto;
}

.sidebar-nav {
  padding: 2rem;
}

.nav-item {
  margin-bottom: 0.8rem;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  color: var(--text-light);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover, 
.nav-link:focus,
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.nav-link i {
  margin-right: 1.2rem;
  font-size: 1.8rem;
}

.sidebar-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.sidebar-contact {
  margin-bottom: 1.6rem;
}

.sidebar-contact p {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
}

.social-link {
  color: var(--text-light);
  font-size: 1.8rem;
  margin: 0 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
}

.social-link:hover, .social-link:focus {
  opacity: 1;
  color: var(--secondary);
}


.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2000;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn i {
  font-size: 2.4rem;
}


.content-wrapper {
  padding: 3.2rem;
  min-height: 100vh;
}

.page-header {
  margin-bottom: 4rem;
}

.page-header h1 {
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 1.6rem;
}

.page-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.page-header p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  max-width: 80ch;
}


.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: #3a3e5a;
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #ff8080;
  color: var(--text-light);
}

.btn-tertiary {
  background-color: var(--tertiary);
  color: var(--text-light);
}

.btn-tertiary:hover, .btn-tertiary:focus {
  background-color: #5fd9d2;
  color: var(--text-light);
}

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

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.btn-lg {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}


.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-img-container {
  overflow: hidden;
  position: relative;
  height: 240px;
}

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

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

.card-body {
  padding: 2.4rem;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.card-text {
  color: var(--text-secondary);
}

.card-footer {
  padding: 1.6rem 2.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-link {
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.card-link i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.6rem;
}

.col {
  padding: 0 1.6rem;
  margin-bottom: 3.2rem;
  width: 100%;
}

.col-12 { width: 100%; }
.col-11 { width: 91.66%; }
.col-10 { width: 83.33%; }
.col-9 { width: 75%; }
.col-8 { width: 66.66%; }
.col-7 { width: 58.33%; }
.col-6 { width: 50%; }
.col-5 { width: 41.66%; }
.col-4 { width: 33.33%; }
.col-3 { width: 25%; }
.col-2 { width: 16.66%; }
.col-1 { width: 8.33%; }


.section {
  padding: 6.4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4.8rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}


.hero-section {
  position: relative;
  padding: 8rem 0;
  background-color: var(--primary);
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-title {
  font-size: 5.6rem;
  font-weight: 800;
  margin-bottom: 2.4rem;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 3.2rem;
  color: rgba(255, 255, 255, 0.9);
}

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


.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-content {
  padding-left: 3.2rem;
}

.feature-box {
  display: flex;
  margin-bottom: 2.4rem;
}

.feature-icon {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-right: 1.6rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}


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

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3.2rem;
  transition: var(--transition);
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.service-icon {
  margin-bottom: 2.4rem;
  color: var(--secondary);
  font-size: 4.2rem;
}

.service-title {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
}

.service-text {
  margin-bottom: 2.4rem;
  color: var(--text-secondary);
  flex-grow: 1;
}


.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.filter-button {
  margin: 0.4rem;
  padding: 0.8rem 1.6rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 500;
}

.filter-button:hover, .filter-button.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

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

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.portfolio-img {
  position: relative;
  height: 240px;
}

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

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

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: white;
}

.portfolio-category {
  font-size: 1.4rem;
  opacity: 0.8;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--border);
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 6.4rem;
  position: relative;
}

.timeline-content {
  position: relative;
  width: calc(50% - 4rem);
  padding: 2.4rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 50%;
  margin-left: 4rem;
}

.timeline-date {
  position: absolute;
  top: 0;
  width: 8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: 4px;
  font-weight: 700;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -12rem;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -12rem;
}

.timeline-dot {
  position: absolute;
  top: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: var(--secondary);
  left: 50%;
  transform: translateX(-50%);
}


.process-steps {
  counter-reset: process-counter;
}

.process-step {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4.8rem;
}

.process-step::before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 50%;
}

.process-title {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

.process-text {
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}


.contact-info {
  margin-bottom: 4.8rem;
}

.contact-item {
  display: flex;
  margin-bottom: 2.4rem;
}

.contact-icon {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-right: 1.6rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.form-group {
  margin-bottom: 2.4rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 48, 71, 0.1);
}

textarea.form-control {
  min-height: 15rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}

.form-check-input {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.form-check-label {
  font-size: 1.4rem;
  color: var(--text-secondary);
}


.map-container {
  height: 40rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.testimonials-slider {
  position: relative;
}

.testimonial-item {
  background-color: white;
  border-radius: 12px;
  padding: 3.2rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 6.4rem;
  position: absolute;
  left: -1.6rem;
  top: -3.2rem;
  color: var(--border);
  opacity: 0.5;
  font-family: serif;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.6rem;
}

.client-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.client-position {
  color: var(--text-secondary);
}


.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 6.4rem 0 3.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3.2rem;
  margin-bottom: 4.8rem;
}

.footer-logo {
  margin-bottom: 2.4rem;
  max-width: 160px;
}

.footer-about p {
  margin-bottom: 2.4rem;
  opacity: 0.8;
}

.footer-heading {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4.8rem;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 1.5px;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 0.8rem;
}

.footer-contact li {
  display: flex;
  margin-bottom: 1.6rem;
}

.footer-contact-icon {
  margin-right: 1.2rem;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin-bottom: 1.6rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1.8rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
}


.footer-wave {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin-top: -100px;
  z-index: -1;
}

.footer-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-badge:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-badge i {
  margin-right: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.footer-nav-link {
  color: var(--text-light);
  margin: 0 1.2rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-nav-link:hover {
  opacity: 1;
  color: var(--secondary);
}


.thank-you-container {
  text-align: center;
  max-width: 720px;
  margin: 8rem auto;
  padding: 4rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.thank-you-icon {
  font-size: 8rem;
  color: var(--success);
  margin-bottom: 3.2rem;
}

.thank-you-title {
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}

.thank-you-message {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 3.2rem;
}

.thank-you-button {
  margin-top: 1.6rem;
}


.cookie-consent {
  position: fixed;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4.8rem);
  max-width: 1200px;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 2.4rem;
  z-index: 9999;
  display: none;
}

.cookie-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.cookie-title {
  font-size: 2rem;
  margin-bottom: 0;
}

.cookie-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.cookie-text {
  margin-bottom: 2.4rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.cookie-settings-panel {
  margin-top: 2.4rem;
  border-top: 1px solid var(--border);
  padding-top: 2.4rem;
  display: none;
}

.cookie-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}

.cookie-setting:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-setting-info h4 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.cookie-setting-info p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 4.8rem;
  height: 2.4rem;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 3.4rem;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 1.8rem;
  width: 1.8rem;
  left: 0.4rem;
  bottom: 0.3rem;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--success);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(2.2rem);
}

.cookie-switch input:disabled + .cookie-slider {
  background-color: #ddd;
  cursor: not-allowed;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  padding: 0.1rem;
}

.iti__selected-flag {
  padding: 0 1.2rem 0 1rem;
  border-radius: 7px 0 0 7px;
}


.professional-timeline {
  position: relative;
  margin: 6.4rem 0;
}

.timeline-container {
  position: relative;
  padding-left: 4rem;
  border-left: 4px solid var(--secondary);
}

.timeline-marker {
  position: absolute;
  left: -13px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid var(--secondary);
}

.timeline-entry {
  position: relative;
  margin-bottom: 6.4rem;
}

.timeline-entry:last-child {
  margin-bottom: 0;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -4.2rem;
  top: 0.8rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.timeline-date-tag {
  position: absolute;
  left: 3.2rem;
  top: -1.2rem;
  background-color: var(--primary);
  color: white;
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 1.4rem;
}

.timeline-content-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 3.2rem;
  margin-top: 2.4rem;
  transition: var(--transition);
}

.timeline-content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.timeline-header {
  margin-bottom: 2.4rem;
}

.timeline-title {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.timeline-subtitle {
  color: var(--text-secondary);
  font-size: 1.6rem;
}

.timeline-description {
  color: var(--text-secondary);
}

.timeline-image {
  margin-top: 2.4rem;
  border-radius: 8px;
  overflow: hidden;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.timeline-tag {
  padding: 0.4rem 1.2rem;
  background-color: var(--bg-light);
  border-radius: 100px;
  font-size: 1.4rem;
  color: var(--text-secondary);
}


.work-process {
  position: relative;
  margin: 6.4rem 0;
}

.process-container {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

.process-item {
  display: flex;
  gap: 3.2rem;
  position: relative;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  font-size: 12rem;
  font-weight: 800;
  color: var(--bg-light);
  line-height: 1;
  position: absolute;
  top: -4rem;
  left: -2rem;
  z-index: -1;
  opacity: 0.8;
}

.process-item:nth-child(even) .process-number {
  left: auto;
  right: -2rem;
}

.process-image {
  width: 40%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.process-content {
  width: 60%;
  padding: 3.2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.process-item:nth-child(odd) .process-content::before {
  content: "";
  position: absolute;
  top: 3.2rem;
  left: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: white;
  transform: rotate(45deg);
  z-index: -1;
}

.process-item:nth-child(even) .process-content::before {
  content: "";
  position: absolute;
  top: 3.2rem;
  right: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: white;
  transform: rotate(45deg);
  z-index: -1;
}

.process-title {
  font-size: 2.8rem;
  margin-bottom: 1.6rem;
  color: var(--primary);
}

.process-description {
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
}

.process-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
}

.process-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.process-feature-icon {
  color: var(--secondary);
  font-size: 2rem;
  flex-shrink: 0;
}

.process-feature-text {
  font-size: 1.5rem;
  color: var(--text-primary);
}


.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  margin: 6.4rem 0;
}

.about-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  height: 100%;
}

.about-card-image {
  height: 240px;
  overflow: hidden;
}

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

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

.about-card-content {
  padding: 3.2rem;
}

.about-card-title {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 1.6rem;
}

.about-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.4rem;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 1.5px;
}

.about-card-text {
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 3.2rem;
}

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

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-weight: 500;
}


.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3.2rem;
  margin: 4.8rem 0;
}

.principle-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.principle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.principle-card-header {
  padding: 2.4rem;
  background-color: var(--primary);
  color: white;
}

.principle-number {
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 800;
}

.principle-title {
  font-size: 2.4rem;
  margin-bottom: 0;
  color: white;
}

.principle-card-content {
  padding: 2.4rem;
}

.principle-card-text {
  color: var(--text-secondary);
}


.projects-grid {
  margin: 4.8rem 0;
}

.grid-sizer,
.grid-item {
  width: 31.33%;
  margin-bottom: 3.2rem;
}

.gutter-sizer {
  width: 3%;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.grid-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.grid-item-image {
  width: 100%;
}

.grid-item-content {
  padding: 2.4rem;
  background-color: white;
}

.grid-item-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.grid-item-category {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 1.6rem;
}

.grid-item-text {
  font-size: 1.4rem;
  color: var(--text-secondary);
}


@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .sidebar {
    width: 280px;
    transform: translateX(-100%);
  }
  
  .main-content {
    width: 100%;
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
  
  .timeline::before {
    left: 3.2rem;
  }
  
  .timeline-content {
    width: calc(100% - 8rem);
    margin-left: 8rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    left: 0;
    margin-left: 8rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
    right: auto;
  }
  
  .timeline-dot {
    left: 3.2rem;
  }
  
  .timeline-date {
    width: 7rem;
    left: 0;
  }
  
  .process-item,
  .process-item:nth-child(even) {
    flex-direction: column;
  }
  
  .process-image,
  .process-content {
    width: 100%;
  }
  
  .process-item:nth-child(odd) .process-content::before,
  .process-item:nth-child(even) .process-content::before {
    display: none;
  }
  
  .process-number {
    font-size: 8rem;
    top: -3rem;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
  }
  
  .grid-sizer,
  .grid-item {
    width: 48%;
  }
  
  .gutter-sizer {
    width: 4%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  .row {
    margin: 0 -1.2rem;
  }
  
  .col {
    padding: 0 1.2rem;
  }
  
  [class*="col-"] {
    width: 100%;
  }
  
  .hero-title {
    font-size: 4.2rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .section {
    padding: 4.8rem 0;
  }
  
  .timeline-container {
    padding-left: 2.4rem;
  }
  
  .timeline-entry::before {
    left: -2.6rem;
  }
  
  .timeline-date-tag {
    position: relative;
    left: 0;
    display: inline-block;
    margin-bottom: 1.2rem;
  }
  
  .timeline-content-card {
    margin-top: 0;
  }
  
  .process-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
  
  .gutter-sizer {
    width: 0;
  }
}

@media (max-width: 576px) {
  .content-wrapper {
    padding: 2.4rem 1.6rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-consent {
    width: calc(100% - 3.2rem);
    padding: 1.6rem;
  }
  
  .card-img-container {
    height: 180px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}