
:root {
  --primary-dark: #1A1A1A;
  --primary-light: #F2F2F2;
  --accent-teal: #006064;
  --accent-gold: #D4AF37;
  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAFA;
  --bg-light-teal: #E0F7FA;
  --text-black: #000000;
  --text-dark-gray: #333333;
  --text-medium-gray: #666666;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark-gray);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover, a:focus {
  color: var(--accent-gold);
  outline: none;
}

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

section {
  padding: 5rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: transparent;
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-gold:hover, .btn-gold:focus {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}


.header {
  position: fixed;
  width: 80px;
  height: 100vh;
  background-color: var(--primary-dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  transition: var(--transition);
}

.header.expanded {
  width: 280px;
}

.logo-container {
  margin-bottom: 3rem;
}

.logo {
  width: 50px;
  transition: var(--transition);
}

.header.expanded .logo {
  width: 180px;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.nav-toggle:hover {
  color: var(--accent-gold);
}

.main-nav {
  width: 100%;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.nav-item {
  margin-bottom: 0.5rem;
  width: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--primary-light);
  transition: var(--transition);
  width: 100%;
}

.nav-link i {
  font-size: 1.25rem;
  margin-right: 1.5rem;
  min-width: 20px;
  text-align: center;
}

.nav-link span {
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
  white-space: nowrap;
}

.header.expanded .nav-link span {
  opacity: 1;
  transform: translateX(0);
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.05);
}


.main-content {
  margin-left: 80px;
  transition: var(--transition);
}

.main-content.shifted {
  margin-left: 280px;
}


.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-offwhite);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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


.zigzag-section {
  padding: 5rem 0;
}

.zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.zigzag-item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.zigzag-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.zigzag-image img {
  transition: transform 0.5s ease;
}

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

.zigzag-content {
  flex: 1;
}

.zigzag-content h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.zigzag-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
}

.zigzag-item:nth-child(even) .zigzag-content h2::after {
  left: auto;
  right: 0;
}


.services {
  background-color: var(--bg-light-teal);
  padding: 5rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: var(--bg-white);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.service-title {
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
}

.service-link {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}


.stats {
  padding: 5rem 0;
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.experience {
  padding: 5rem 0;
}

.experience-tabs {
  display: flex;
  border-bottom: 1px solid var(--primary-light);
  margin-bottom: 2rem;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-button.active {
  border-bottom-color: var(--accent-teal);
  color: var(--accent-teal);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


.case-studies {
  padding: 5rem 0;
  background-color: var(--bg-offwhite);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.case-card {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-image {
  height: 250px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.case-content {
  padding: 2rem;
}

.case-category {
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.case-title {
  margin-bottom: 1rem;
}

.case-description {
  margin-bottom: 1.5rem;
}

.case-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--primary-light);
  padding-top: 1rem;
}

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

.case-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.case-stat-label {
  font-size: 0.875rem;
  color: var(--text-medium-gray);
}


.contact-form-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-heading {
  margin-bottom: 1.5rem;
}

.contact-text {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--accent-teal);
  font-size: 1.25rem;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-details p, .contact-details a {
  color: var(--text-medium-gray);
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--bg-white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--primary-light);
  background-color: var(--bg-white);
  transition: var(--transition);
}

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

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

.form-check-input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--text-medium-gray);
}

.iti {
  width: 100%;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}


.map-section {
  padding: 0;
}

.map-container {
  height: 450px;
}

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


.footer {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: #999;
}

.footer-heading {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: #999;
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

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

.contact-info-icon {
  margin-right: 1rem;
  color: var(--accent-gold);
}

.contact-info-text {
  color: #999;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cookie-settings-btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

.cookie-accept-btn {
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-accept-btn:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-title {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium-gray);
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--primary-dark);
}

.cookie-preferences {
  margin-bottom: 2rem;
}

.cookie-category {
  padding: 1rem;
  border: 1px solid var(--primary-light);
  margin-bottom: 1rem;
}

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

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

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.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: .4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--accent-teal);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  font-size: 0.9rem;
  color: var(--text-medium-gray);
}

.cookie-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-save-btn {
  background-color: var(--accent-teal);
  color: var(--bg-white);
}

.cookie-save-btn:hover {
  background-color: transparent;
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}


.thanks-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-offwhite);
}

.thanks-container {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent-teal);
  margin-bottom: 2rem;
}

.thanks-title {
  margin-bottom: 1rem;
}

.thanks-text {
  margin-bottom: 2rem;
}

.back-home {
  display: inline-flex;
  align-items: center;
}

.back-home i {
  margin-right: 0.5rem;
}


.policy-page {
  padding: 8rem 0 5rem;
}

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

.policy-title {
  margin-bottom: 2rem;
}

.policy-date {
  color: var(--text-medium-gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section-title {
  margin-bottom: 1rem;
}

.policy-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}


@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .header {
    width: 70px;
  }
  
  .header.expanded {
    width: 250px;
  }
  
  .main-content {
    margin-left: 70px;
  }
  
  .main-content.shifted {
    margin-left: 250px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .zigzag-item {
    flex-direction: column;
    gap: 2rem;
  }
  
  .zigzag-item:nth-child(even) {
    flex-direction: column;
  }
  
  .zigzag-content h2::after,
  .zigzag-item:nth-child(even) .zigzag-content h2::after {
    left: 0;
    right: auto;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-buttons .btn {
    margin-bottom: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
    margin-top: 1rem;
  }
  
  .cookie-actions .btn {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .header {
    width: 100%;
    height: 60px;
    flex-direction: row;
    padding: 0 1.5rem;
    justify-content: space-between;
  }
  
  .header.expanded {
    height: 100vh;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  
  .logo-container {
    margin-bottom: 0;
  }
  
  .header.expanded .logo-container {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    width: 40px;
  }
  
  .header.expanded .logo {
    width: 150px;
  }
  
  .nav-toggle {
    margin-bottom: 0;
  }
  
  .main-nav {
    display: none;
    width: 100%;
  }
  
  .header.expanded .main-nav {
    display: block;
  }
  
  .nav-link span {
    opacity: 1;
    transform: none;
  }
  
  .main-content {
    margin-left: 0;
    margin-top: 60px;
  }
  
  .main-content.shifted {
    margin-left: 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-button {
    border: 1px solid var(--primary-light);
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .tab-button.active {
    border-color: var(--accent-teal);
    border-width: 1px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .cookie-modal-content {
    max-width: 90%;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .btn {
    width: 100%;
  }
}