:root {
  /* Primary color palette - pastel high-contrast colors for architects */
  --primary-blue: #67abd0;
  --primary-green: #70b3a1;
  --primary-purple: #8582b4;
  --primary-orange: #cd8644;
  --primary-gray: #636e83;
  
  /* Light shades */
  --light-blue: #edf3f5;
  --light-green: #F0F9F6;
  --light-purple: #F2F0F8;
  --light-orange: #FBF5ED;
  --light-gray: #F9FAFB;
  
  /* Dark shades */
  --dark-blue: #264768;
  --dark-green: #428964;
  --dark-purple: #564b7e;
  --dark-orange: #ad863b;
  --dark-gray: #424c5c;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --content-max-width: 1200px;
}

/* Typography and base styles */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-blue);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-blue);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Section styling */
.section {
  padding: var(--section-padding);
}

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

.section-subtitle {
  color: var(--primary-blue);
  font-size: var(--font-size-large);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-desc {
  color: var(--primary-gray);
  font-size: var(--font-size-base);
  margin-bottom: 3rem;
}

/* Header and Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  position: relative;
}

.hero-content {
  z-index: 2;
    padding-top: 225px;
}

.hero-decorative {
  position: absolute;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decorative-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

/* Button styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
}

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

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: var(--light-blue);
  border-bottom: 1px solid var(--primary-blue);
  font-weight: 600;
  color: var(--dark-blue);
}

/* Service cards */
.service-card {
  height: 100%;
  background: white;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Feature cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  background: white;
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Pricing cards */
.pricing-card {
  position: relative;
  border-radius: 0.75rem;
  padding: 2rem;
  background: white;
  height: 100%;
}

.pricing-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--light-gray);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-blue);
  font-weight: 500;
}

/* Review cards */
.review-card {
  background: var(--light-blue);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Case study cards */
.casestudy-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-green);
}

.casestudy-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-blue);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-title {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

/* Career cards */
.career-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.career-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Core info cards */
.coreinfo-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--light-gray);
}

.coreinfo-icon {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--light-gray);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(67, 120, 160, 0.25);
}

.contact-info {
  background: var(--light-blue);
  border-radius: 0.75rem;
  padding: 2rem;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

/* Blog cards */
.blog-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--primary-gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* FAQ cards */
.faq-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-blue);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-gray);
  margin: 0;
  border-top: 1px solid var(--light-gray);
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--light-gray);
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-small);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Space page */
#space {
  min-height: 60vh;
  background: var(--light-blue);
  border-radius: 0.75rem;
  margin: 2rem 0;
}

/* Utility classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-dark-blue { color: var(--dark-blue); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
