

/* Welcome Section */
.welcome-section {
  padding: 6rem 0 3rem 0;
  background-color: var(--color-white, #ffffff);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.welcome-content {
  max-width: 540px;
}

.welcome-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-dark, #202020);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: Georgia, 'Times New Roman', serif;
}

.welcome-lead {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text-dark, #202020);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.welcome-description {
  font-size: 1rem;
  color: var(--color-text-gray, #6b6b6b);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.welcome-quote {
  border-left: 4px solid var(--color-primary, #B8860B);
  padding-left: 1.5rem;
  margin: 0;
}

.welcome-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-gray-light, #404040);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.welcome-quote cite {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-primary, #B8860B);
  font-weight: 600;
}

/* Welcome Cards - Matching Map Section Style */
.welcome-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.welcome-info-card {
  background: var(--color-white, #ffffff);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.welcome-info-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary, #B8860B);
  flex-shrink: 0;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-info-icon svg {
  width: 24px;
  height: 24px;
}

.welcome-info-content {
  flex: 1;
}

.welcome-info-content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-gray, #6b6b6b);
  margin-bottom: 0.5rem;
}

.welcome-info-content .hours-preview,
.welcome-info-content .contact-preview {
  font-size: 0.95rem;
  color: var(--color-text-dark, #202020);
  line-height: 1.6;
  margin: 0;
}

.welcome-info-content a {
  color: var(--color-text-dark, #202020);
  text-decoration: none;
  transition: color 0.3s ease;
}

.welcome-info-content a:hover {
  color: var(--color-primary, #B8860B);
}


/* Map Section - Premium Redesign */
.map-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

/* Header */
.map-header {
  text-align: center;
  padding: 0 0 3rem 0;
}

.map-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.map-lead {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Full-width Map Wrapper */
.map-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}

.map-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* Info Cards Grid */
.map-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: -3rem auto 4rem;
  max-width: 1000px;
  padding: 0 1rem;
  position: relative;
  z-index: 20;
}

.info-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  flex-shrink: 0;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  margin-bottom: 0.5rem;
}

.info-content address,
.info-content p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-style: normal;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--color-primary);
}

.hours-preview {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* Transport Section (part of Map) */
.transport-section {
  padding: 0;
}

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

.transport-title-wrapper {
  max-width: 600px;
  margin: 0 auto;
}


.transport-title-wrapper h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.transport-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* Transport Grid */
.transport-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.transport-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--color-white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Rounded Square Line Badge */
.transport-line-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transport-line-circle span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.transport-line-circle.u-bahn {
  background: #e3000f;
}

.transport-line-circle.tram {
  background: #009530;
}

.transport-line-circle.bus {
  background: #0077c8;
}

/* Transport Info */
.transport-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.transport-station {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.transport-time {
  font-size: 0.95rem;
  color: var(--color-text-gray);
}

/* CTA */
.map-cta {
  text-align: center;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-large svg {
  width: 22px;
  height: 22px;
}

/* Responsive Map Section */


/* USP Section */
.usp-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.usp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.usp-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.usp-lead {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.usp-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.usp-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.usp-icon svg {
  width: 26px;
  height: 26px;
}

.usp-content {
  flex: 1;
}

.usp-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.usp-description {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.5;
  margin: 0;
}

/* Responsive USP Section */


/* Services Section */
.services-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

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

.services-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.services-lead {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  padding: 12px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

/* Override hardcoded colors in uploaded SVGs */
.service-icon svg path,
.service-icon svg polygon,
.service-icon svg rect,
.service-icon svg circle,
.service-icon svg line,
.service-icon svg polyline {
  fill: currentColor !important;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.5rem 0;
}

.service-description {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.service-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-examples li {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Responsive Services Section */


/* Pricing Section */
.pricing-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  font-style: italic;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pricing-tab {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-gray);
  background: transparent;
  border: 2px solid var(--color-text-gray-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pricing-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Pricing Panels */
.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing List (Card-based) */
.pricing-list {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.pricing-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}

.pricing-item:hover {
  background-color: rgba(181, 144, 73, 0.03);
}

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

.pricing-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.pricing-item-header:hover {
  background-color: rgba(181, 144, 73, 0.04);
}

.pricing-item-header:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.pricing-item-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  flex: 1;
}

.pricing-item-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(181, 144, 73, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  min-width: 100px;
  text-align: center;
}

.accordion-chevron {
  color: var(--color-text-gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pricing-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.pricing-item-details {
  display: none;
  padding: 0 2rem 1.5rem 2rem;
}

.pricing-item.active .pricing-item-details {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-item-row:first-child {
  border-top: none;
}

.pricing-item-length {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  flex: 1;
  text-align: left;
}

.pricing-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: right;
  min-width: 100px;
}

/* Empty state */
.pricing-empty {
  padding: 3rem;
  text-align: center;
  color: var(--color-text-gray);
}

/* CTA Button */
.pricing-cta {
  text-align: center;
}

.pricing-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
}

/* Responsive Pricing Section */


/* Offers Section */
.offers-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.offers-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.offers-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.offers-subheading {
  font-size: 1.125rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.offer-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.offer-card.highlighted {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(181, 144, 73, 0.05) 100%);
}

.offer-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

.offer-description {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

.offer-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.offer-validity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-gray);
}

.offer-validity svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.offers-empty {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-gray);
  font-size: 1.125rem;
  grid-column: 1 / -1;
}

.offers-cta {
  text-align: center;
}

.offers-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
}

/* Responsive Offers Section */


.team-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.team-lead {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  max-width: 380px;
  min-width: 280px;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}


.team-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-background);
}

.team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image {
  transform: scale(1.03);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.08) 0%, rgba(181, 144, 73, 0.03) 100%);
  color: var(--color-primary);
}

.team-card-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.team-card-content {
  padding: 1.5rem;
  text-align: center;
}

.team-card-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.team-card-role {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-card-bio {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 1.5rem;
  }

  .team-card-name {
    font-size: 1.35rem;
  }
}

/* Gallery Section - Modern Grid with Exciting Masonry */
.gallery-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.gallery-lead {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Exciting Masonry Grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:nth-child(6n+1) {
  grid-row: span 2;
}

.gallery-item:nth-child(6n+3) {
  grid-column: span 2;
}

.gallery-item:nth-child(6n+5) {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.15) 0%, rgba(181, 144, 73, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.gallery-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-btn::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>') no-repeat center;
  background-size: contain;
}

/* Responsive Gallery Section */
@media (max-width: 1200px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(6n+3),
  .gallery-item:nth-child(6n+5) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(6n+5) {
    grid-row: span 2;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

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

.testimonials-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 2rem;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-slide.prev {
  transform: translateX(-100%);
}

.testimonial-content {
  text-align: center;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 12px;
  padding: 12px;
  box-sizing: content-box;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star-icon {
  width: 24px;
  height: 24px;
  color: #d1d1d1;
  transition: color 0.3s ease;
}

.star-icon.filled {
  color: var(--color-primary);
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-gray);
  margin: 0;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonial-nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  gap: 0.75rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(181, 144, 73, 0.5);
}

/* Responsive Testimonials Section */


/* Partners Section */
.partners-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

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

.partners-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  min-height: 100px;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.partner-logo-image {
  max-width: 160px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
}

.partners-logos svg {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 50px;
}


/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0 6rem 0;
  background-color: var(--color-white);
}

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

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}

.faq-item:hover {
  background-color: rgba(181, 144, 73, 0.03);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.faq-item-header:hover {
  background-color: rgba(181, 144, 73, 0.04);
}

.faq-item-header:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.faq-item-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  flex: 1;
  padding-right: 1rem;
}

.faq-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.faq-item-details {
  display: none;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-item.active .faq-item-details {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-answer-text {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 0;
  background: linear-gradient(135deg, var(--color-text-dark) 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  opacity: 1;
  pointer-events: none;
}

.cta-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-banner-text-content {
  flex: 1;
}

.cta-banner-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-banner-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 500px;
}

.cta-banner-action {
  flex-shrink: 0;
}

.cta-banner-btn {
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(181, 144, 73, 0.3);
}

.cta-banner-btn:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(181, 144, 73, 0.4);
}

/* Footer */
.site-footer {
  background-color: var(--color-background);
}

.footer-main {
  padding: 4rem 0 3rem;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.footer-logo {
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-logo-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: block;
}

.footer-logo-sub {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--color-primary);
}

.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.footer-hours-table td {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-text-gray);
}

.footer-hours-table td:first-child {
  color: var(--color-text-dark);
  font-weight: 600;
  padding-right: 1rem;
}

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

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

.footer-link-list a {
  color: var(--color-text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin: 0;
}

.footer-made-with {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin: 0;
}

.heart {
  color: var(--color-primary);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 4.5rem;
  right: 2rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(181, 144, 73, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-cta:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(181, 144, 73, 0.4);
}

.floating-cta-icon {
  width: 20px;
  height: 20px;
  color: currentColor;
}

/* Responsive FAQ, CTA, Footer */


/* Legal Page Styles */
.legal-page {
  min-height: 100vh;
  background-color: var(--color-white);
}

.legal-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--color-text-dark) 0%, #2a2a2a 100%);
  text-align: center;
}

.legal-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

.legal-content {
  padding: 4rem 0 6rem;
}

/* Markdown Content Styling */
.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 3rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 2rem 0 1rem;
}

.legal-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  margin-bottom: 2rem;
}

/* Blog post specific breadcrumbs - positioned under hero image */
.blog-post-breadcrumbs {
  background: var(--color-white);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: -1px;
}

.blog-post-breadcrumbs .breadcrumbs {
  margin-bottom: 0;
  padding: 0;
}

.blog-post-breadcrumbs .breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.blog-post-breadcrumbs .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.blog-post-breadcrumbs .breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--color-text-gray, #6b6b6b);
  margin-left: 0.5rem;
  opacity: 0.5;
}

.blog-post-breadcrumbs .breadcrumb-link {
  color: var(--color-text-gray, #6b6b6b);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-breadcrumbs .breadcrumb-link:hover {
  color: var(--color-primary, #B8860B);
  text-decoration: underline;
}

.blog-post-breadcrumbs .breadcrumb-text {
  color: var(--color-text-dark, #202020);
  font-weight: 600;
}

.blog-post-breadcrumbs .breadcrumb-text[aria-current="page"] {
  color: var(--color-text-dark, #202020);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--color-text-gray, #6b6b6b);
  margin-left: 0.5rem;
}

.breadcrumb-link {
  color: var(--color-primary, #B8860B);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-primary-hover, #9A7B0A);
  text-decoration: underline;
}

.breadcrumb-text {
  color: var(--color-text-dark, #202020);
  font-weight: 600;
}

.breadcrumb-text[aria-current="page"] {
  color: var(--color-text-dark, #202020);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
  }
  
  .breadcrumb-list {
    font-size: 0.875rem;
  }
  
  .blog-post-breadcrumbs {
    padding: 1rem 0;
  }
  
  .blog-post-breadcrumbs .breadcrumb-item {
    font-size: 0.875rem;
  }
}

.legal-content li {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content li:last-child {
  margin-bottom: 0;
}

.legal-content strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--color-text-dark);
}

.legal-content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.legal-content address {
  font-style: normal;
  color: var(--color-text-gray);
  line-height: 1.7;
}

.legal-back-link {
  margin-top: 4rem;
  text-align: center;
}

/* Responsive Legal Page */


/* Blog Section */
.blog-section {
  padding: var(--header-height) 0 6rem 0;
  background-color: var(--color-background);
  min-height: 100vh;
}

.blog-header {
  text-align: center;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--color-text-dark) 0%, #2a2a2a 100%);
}

.blog-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

.blog-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Page Content Wrapper */
.blog-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  text-align: center;
}

.blog-content-wrapper p {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-category-filter {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
}

.category-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-gray);
  background: var(--color-background);
  border: 2px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-filter-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-white);
}

.category-filter-link.active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.category-filter-count {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Blog Layout */
.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Bento Grid Layout */
.blog-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
  align-items: start;
}

/* Blog Cards - Bento Style */
.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card.highlighted {
  border: 2px solid var(--color-primary);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(181, 144, 73, 0.05) 100%);
}

.blog-card:nth-child(6n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-card:nth-child(6n+2) {
  grid-column: span 2;
  grid-row: span 1;
}

.blog-card:nth-child(6n+3) {
  grid-column: span 2;
  grid-row: span 1;
}

.blog-card:nth-child(6n+4) {
  grid-column: span 1;
  grid-row: span 1;
}

.blog-card:nth-child(6n+5) {
  grid-column: span 2;
  grid-row: span 1;
}

.blog-card:nth-child(6n+6) {
  grid-column: span 1;
  grid-row: span 1;
}

/* Blog Card Image - Bento Layout */
.blog-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.08) 0%, rgba(181, 144, 73, 0.03) 100%);
}

.blog-card:nth-child(6n+1) .blog-card-image-wrapper {
  height: 280px;
}

.blog-card:nth-child(6n+2) .blog-card-image-wrapper,
.blog-card:nth-child(6n+3) .blog-card-image-wrapper {
  height: 140px;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Image Placeholder */
.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.1) 0%, rgba(181, 144, 73, 0.05) 100%);
  color: var(--color-primary);
}

.blog-card-image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* Category Badge */
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  z-index: 2;
}

/* Blog Card Content */
.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-gray);
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-date svg {
  width: 14px;
  height: 14px;
}

.blog-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.blog-card:nth-child(1) .blog-card-title {
  font-size: 1.75rem;
}

.blog-card-summary {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.blog-card.small .blog-card-summary {
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  height: fit-content;
}

.sidebar-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

/* Categories List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 0.5rem;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: var(--color-text-gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.3s ease;
}

.category-item:last-child .category-link {
  border-bottom: none;
}

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

.category-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.category-count {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  min-width: 28px;
  text-align: center;
}

/* Recent Posts Sidebar */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recent-post-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 0.35rem 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-post-link:hover .recent-post-title {
  color: var(--color-primary);
}

.recent-post-date {
  font-size: 0.875rem;
  color: var(--color-text-gray);
}

/* Blog Pagination - Container */
.blog-pagination {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Standard Pagination Styles */
.blog-pagination ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination ul.pagination li {
  display: inline-flex;
  border: none;
}

.blog-pagination ul.pagination li a,
.blog-pagination ul.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-gray);
  background: var(--color-white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination ul.pagination li a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.blog-pagination ul.pagination li span.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.blog-pagination ul.pagination li.gap span {
  border: none;
  background: transparent;
  color: var(--color-text-gray);
}

/* Legacy styles for backwards compatibility */
.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-gray);
  background: var(--color-white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.pagination-link.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.pagination-link.prev,
.pagination-link.next {
  padding: 0 1.25rem;
  gap: 0.5rem;
}

.pagination-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Blog Post Page */
.blog-post {
  padding: var(--header-height) 0 6rem 0;
  background-color: var(--color-background);
}

/* Blog Post - Complete Redesign */
.blog-post {
  background: var(--color-background);
}

/* Blog Post Hero Section */
.blog-post-hero {
  position: relative;
  min-height: 45vh;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.blog-post-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-post-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.blog-post-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
  padding: 0 2rem;
}

.blog-post-hero-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-hero-content .blog-post-category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.blog-post-hero-content .blog-post-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-post-hero-content .blog-post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.blog-post-hero-content .blog-post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-hero-content .blog-post-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* Blog Post Body */
.blog-post-body {
  padding: 4rem 0;
}

.blog-post-body .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-gray);
}

.blog-post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 3rem 0 1.5rem 0;
  line-height: 1.3;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.blog-post-content p {
  margin: 0 0 1.5rem 0;
}

.blog-post-content p:last-child {
  margin-bottom: 0;
}

.blog-post-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}

.blog-post-content a:hover {
  color: var(--color-primary-hover);
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-dark);
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}

/* Blog Post Footer */
.blog-post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.back-to-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-blog-link:hover {
  color: var(--color-primary-hover);
}

.back-to-blog-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .blog-post-hero {
    min-height: 40vh;
    max-height: 400px;
    padding-bottom: 2.5rem;
  }
  
  .blog-post-hero-content .blog-post-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blog-post-hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  
  .blog-post-hero-content {
    padding: 0 1rem;
  }
  
  .blog-post-hero-content .blog-post-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .blog-post-hero-content .blog-post-meta {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .blog-post-body {
    padding: 2rem 0;
  }
  
  .blog-post-body .container {
    padding: 0 1rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.25rem;
  }
}

/* Legacy styles for backwards compatibility */
.blog-post-header {
  display: none;
}

.blog-post-featured-image {
  display: none;
}

.back-to-blog {
  display: none;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-post-content li {
  font-size: 1.05rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-post-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Back to Blog Link */
.back-to-blog {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.back-to-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-to-blog-link:hover {
  color: var(--color-primary-hover);
}

.back-to-blog-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-to-blog-link:hover svg {
  transform: translateX(-4px);
}

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.blog-empty-icon {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.blog-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.75rem 0;
}

.blog-empty-text {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  margin: 0;
}

/* Responsive Blog Styles */
@media (max-width: 1200px) {
  .blog-layout {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .blog-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Pattern: Large, Normal, Normal, Large, Normal, Normal... */
  .blog-card:nth-child(3n+1) {
    grid-column: span 2;
  }

  .blog-card:nth-child(3n+2),
  .blog-card:nth-child(3n+3) {
    grid-column: span 1;
  }

  /* Image heights - Large posts get taller images */
  .blog-card:nth-child(3n+1) .blog-card-image-wrapper {
    height: 280px;
  }

  .blog-card:nth-child(3n+2) .blog-card-image-wrapper,
  .blog-card:nth-child(3n+3) .blog-card-image-wrapper {
    height: 200px;
  }

  /* Better content spacing for tablet */
  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card:nth-child(3n+1) .blog-card-title {
    font-size: 1.35rem;
  }

  .blog-card:nth-child(3n+2) .blog-card-title,
  .blog-card:nth-child(3n+3) .blog-card-title {
    font-size: 1.125rem;
  }

  .blog-card-summary {
    font-size: 0.9375rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}


@media (max-width: 480px) {
  .blog-heading {
    font-size: 1.75rem;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-post-title {
    font-size: 1.5rem;
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

/* ==========================================================================

/* ==========================================================================
   Responsive Design - Tablet (max-width: 992px)
   ========================================================================== */

@media (max-width: 992px) {
  .nav-left,
  .nav-right .nav-links {
    display: none;
  }

  .nav-right {
    justify-content: flex-end;
    padding-left: 0;
  }

  .nav-right .mobile-menu-toggle {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .welcome-section {
    padding: 3rem 0;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .welcome-content {
    max-width: 100%;
  }

  .welcome-heading {
    font-size: 2.5rem;
  }

  .welcome-lead {
    font-size: 1.15rem;
  }

  .welcome-cards {
    max-width: 500px;
    margin: 0 auto;
  }
  .map-header {
    padding: 4rem 0 2rem;
  }

  .map-heading {
    font-size: 2rem;
  }

  .map-container {
    height: 350px;
    margin: 0 1rem;
  }

  .map-info-grid {
    grid-template-columns: 1fr;
    margin: -2rem 1rem 3rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .transport-grid {
    flex-direction: column;
    align-items: center;
  }
  .usp-section {
    padding: 3rem 0;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .usp-heading {
    font-size: 2rem;
  }

  .usp-card {
    padding: 1.5rem;
  }
  .services-section {
    padding: 3rem 0;
  }

  .services-heading {
    font-size: 2rem;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }
  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-heading {
    font-size: 2rem;
  }

  .pricing-tab {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .pricing-item {
    padding: 1.25rem 1.5rem;
  }

  .pricing-item-details {
    gap: 1rem;
    padding-left: 0.75rem;
  }
  .offers-section {
    padding: 3rem 0;
  }

  .offers-heading {
    font-size: 2rem;
  }

  .offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .offer-card {
    padding: 1.5rem;
  }
  .team-section {
    padding: 3rem 0;
  }

  .team-heading {
    font-size: 2rem;
  }

  .team-grid {
    gap: 1.5rem;
  }

  .team-card-name {
    font-size: 1.35rem;
  }

  .team-card-bio {
    font-size: 0.875rem;
  }
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-heading {
    font-size: 2rem;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(6n+1),
  .gallery-item:nth-child(6n+5) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(6n+3) {
    grid-column: span 2;
  }
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-heading {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonial-slide {
    padding: 1.5rem;
  }
  .partners-section {
    padding: 3rem 0;
  }

  .partners-heading {
    font-size: 2rem;
  }

  .partners-logos {
    gap: 2rem;
  }

  .partner-logo {
    padding: 1.5rem 2rem;
    min-width: 180px;
    min-height: 80px;
  }

  .partner-logo-image {
    max-width: 140px;
    max-height: 45px;
  }

  .partners-logos svg {
    max-width: 140px;
    max-height: 45px;
  }
  .faq-section {
    padding: 3rem 0;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .cta-banner-section {
    padding: 3rem 0;
  }

  .cta-banner-heading {
    font-size: 2rem;
  }

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

  .footer-main {
    padding: 3rem 0 2rem;
  }
  .legal-header {
    padding: 6rem 0 3rem;
  }

  .legal-heading {
    font-size: 2rem;
  }

  .legal-content {
    padding: 3rem 0 4rem;
  }

  .legal-section-heading {
    font-size: 1.75rem;
  }

  .legal-card {
    padding: 2rem;
  }
  .blog-section {
    padding: 7rem 0 4rem 0;
  }

  .blog-header {
    padding: 3rem 0 2.5rem;
  }

  .blog-heading {
    font-size: 2.5rem;
  }

  .blog-lead {
    font-size: 1.1rem;
  }

  .blog-layout {
    padding: 2.5rem 1rem;
  }

  .blog-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .blog-card.large {
    grid-column: span 2;
  }

  .blog-post-title {
    font-size: 2.25rem;
  }

  .blog-post-content h2 {
    font-size: 1.75rem;
  }

  .blog-post-content h3 {
    font-size: 1.35rem;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Responsive Design - Mobile (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .logo-main {
    font-size: 1.5rem;
  }

  .logo-sub {
    font-size: 0.875rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }
  .welcome-section {
    padding: 3rem 0;
  }

  .welcome-heading {
    font-size: 2rem;
  }

  .welcome-lead {
    font-size: 1.1rem;
  }

  .welcome-quote p {
    font-size: 1rem;
  }
  .map-header {
    padding: 3rem 0 1.5rem;
  }

  .map-heading {
    font-size: 1.75rem;
  }

  .map-container {
    height: 300px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .usp-section {
    padding: 3rem 0;
  }

  .usp-heading {
    font-size: 1.75rem;
  }

  .usp-icon {
    width: 48px;
    height: 48px;
  }

  .usp-icon svg {
    width: 24px;
    height: 24px;
  }

  .usp-title {
    font-size: 1.1rem;
  }

  .usp-description {
    font-size: 0.9rem;
  }
  .services-section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    padding: 10px;
  }

  .service-description {
    min-height: auto;
  }

  .service-examples {
    text-align: center;
  }

  .service-examples li {
    display: inline-block;
    margin: 0 0.5rem;
    padding-left: 1rem;
  }
  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-tabs {
    gap: 0.5rem;
  }

  .pricing-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .pricing-list {
    margin: 0 -1rem 2rem;
    border-radius: 0;
  }

  .pricing-item {
    padding: 1rem 1.25rem;
  }

  .pricing-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .pricing-item-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pricing-item-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .pricing-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  .offers-section {
    padding: 3rem 0;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 -1rem 2rem;
  }

  .offer-card {
    border-radius: 0;
    margin: 0 -1rem;
  }

  .offer-title {
    font-size: 1.25rem;
  }

  .offers-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .team-section {
    padding: 3rem 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .team-card-image-wrapper {
    aspect-ratio: 3 / 4;
  }

  .team-card-content {
    padding: 1.25rem;
  }

  .team-card-name {
    font-size: 1.25rem;
  }

  .team-card-role {
    font-size: 0.875rem;
  }

  .team-card-bio {
    font-size: 0.875rem;
  }

  .team-heading {
    font-size: 1.75rem;
  }

  .team-lead {
    font-size: 1rem;
  }
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    max-width: 500px;
    gap: 1rem;
  }

  .gallery-item:nth-child(6n+3),
  .gallery-item:nth-child(6n+5) {
    grid-column: span 1;
  }

  .gallery-heading {
    font-size: 1.75rem;
  }

  .gallery-header {
    margin-bottom: 2.5rem;
  }

  .gallery-cta {
    margin-top: 2.5rem;
  }

  .gallery-lead {
    font-size: 1rem;
  }
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-heading {
    font-size: 1.75rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-quote-icon {
    width: 36px;
    height: 36px;
  }

  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
  }

  .star-icon {
    width: 20px;
    height: 20px;
  }
  .partners-section {
    padding: 3rem 0;
  }

  .partners-heading {
    font-size: 1.75rem;
  }

  .partners-logos {
    gap: 1.5rem;
  }

  .partner-logo {
    padding: 1.25rem 1.5rem;
    min-width: 150px;
    min-height: 70px;
  }

  .partner-logo-image {
    max-width: 120px;
    max-height: 40px;
  }

  .partners-logos svg {
    max-width: 120px;
    max-height: 40px;
  }
  .faq-section {
    padding: 3rem 0;
  }

  .faq-heading {
    font-size: 1.75rem;
  }

  .cta-banner-section {
    padding: 3rem 0;
  }

  .cta-banner-heading {
    font-size: 1.75rem;
  }

  .cta-banner-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .floating-cta {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.25rem;
  }

  .floating-cta-text {
    display: none;
  }
  .legal-header {
    padding: 5rem 0 2.5rem;
  }

  .legal-heading {
    font-size: 1.75rem;
  }

  .legal-content {
    padding: 2.5rem 0;
  }

  .legal-section-heading {
    font-size: 1.5rem;
  }

  .legal-card {
    padding: 1.5rem;
    border-radius: 0;
    margin: 0 -1rem;
  }

  .legal-info-block h3 {
    font-size: 1rem;
  }

  .legal-info-block p,
  .legal-info-block address {
    font-size: 0.95rem;
  }
  .blog-section {
    padding: 6rem 0 3rem 0;
  }

  .blog-header {
    padding: 2.5rem 0 2rem;
  }

  .blog-heading {
    font-size: 2rem;
  }

  .blog-masonry {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card.large,
  .blog-card.medium,
  .blog-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .blog-card.large .blog-card-image-wrapper,
  .blog-card.medium .blog-card-image-wrapper,
  .blog-card.small .blog-card-image-wrapper {
    height: 200px;
  }

  .blog-card-title {
    font-size: 1.25rem;
  }

  .blog-card.large .blog-card-title {
    font-size: 1.35rem;
  }

  .blog-post-title {
    font-size: 1.75rem;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-post-featured-image {
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .blog-post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }

  .blog-post-content {
    padding: 0 1rem;
  }

  .blog-post-content h2 {
    font-size: 1.5rem;
  }

  .blog-post-content h3 {
    font-size: 1.25rem;
  }

  .blog-post-content p {
    font-size: 1rem;
  }

  .sidebar-section {
    padding: 1.5rem;
  }

  .pagination-link {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Utility Classes - Phase 2 Refactoring
   These classes provide reusable patterns for common components
   ========================================================================== */

/* Section Header Utilities */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-heading--lg { font-size: 3rem; }
.section-heading--md { font-size: 2rem; }
.section-heading--sm { font-size: 1.75rem; }

.section-lead {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Card Component Utilities */
.card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card--rounded { border-radius: 16px; }
.card--padding-sm { padding: 1.25rem; }
.card--padding-md { padding: 1.5rem; }
.card--padding-lg { padding: 1.75rem; }
.card--shadow-none { box-shadow: none; }

/* Card with horizontal layout */
.card--horizontal {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

/* Icon container for cards */
.card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(181, 144, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card-icon--sm {
  width: 44px;
  height: 44px;
}

.card-icon--sm svg {
  width: 24px;
  height: 24px;
}

/* Grid Layout Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .section-heading--lg { font-size: 2.5rem; }
  .section-heading--md { font-size: 1.75rem; }
  .section-heading--sm { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.75rem;
  }
  
  .section-heading--lg { font-size: 2rem; }
  .section-heading--md { font-size: 1.5rem; }
  .section-heading--sm { font-size: 1.35rem; }
}

/* ==========================================================================
   Mobile Blog Bento Grid Redesign
   ========================================================================== */

@media (max-width: 768px) {
  .blog-bento {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Reset all bento grid spanning */
  .blog-bento .blog-card,
  .blog-bento .blog-card:nth-child(6n+1),
  .blog-bento .blog-card:nth-child(6n+2),
  .blog-bento .blog-card:nth-child(6n+3),
  .blog-bento .blog-card:nth-child(6n+4),
  .blog-bento .blog-card:nth-child(6n+5),
  .blog-bento .blog-card:nth-child(6n+6) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  /* Standardize card image heights */
  .blog-bento .blog-card .blog-card-image-wrapper,
  .blog-bento .blog-card:nth-child(6n+1) .blog-card-image-wrapper,
  .blog-bento .blog-card:nth-child(6n+2) .blog-card-image-wrapper,
  .blog-bento .blog-card:nth-child(6n+3) .blog-card-image-wrapper {
    height: 200px;
  }

  /* Consistent card padding */
  .blog-bento .blog-card-content {
    padding: 1.25rem;
  }

  /* Improve touch targets */
  .blog-bento .blog-card {
    min-height: auto;
  }

  /* Better card spacing */
  .blog-bento .blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .blog-bento .blog-card-summary {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  /* Ensure highlighted cards don't break layout */
  .blog-bento .blog-card.highlighted {
    order: -1;
    border-width: 2px;
  }
}

/* Related Posts Section */
.related-posts {
  padding: 4rem 0 6rem 0;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.related-posts-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.2;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.related-post-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.related-post-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.related-post-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.08) 0%, rgba(181, 144, 73, 0.03) 100%);
}

.related-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image {
  transform: scale(1.05);
}

.related-post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-post-category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.related-post-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  flex: 1;
}

.related-post-summary {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-post-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-read-more svg {
  transform: translateX(4px);
}

/* Responsive Related Posts */
@media (max-width: 992px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .related-posts-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .related-posts {
    padding: 3rem 0 4rem 0;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 1.25rem;
  }
  
  .related-posts-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .related-post-image-wrapper {
    height: 180px;
  }
  
  .related-post-title {
    font-size: 1.1rem;
  }
}

/* Language Switcher Styles */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-switcher-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.lang-switcher-item {
  display: flex;
  align-items: center;
}

.lang-switcher-separator {
  color: var(--color-text-gray);
  opacity: 0.5;
  font-size: 0.875rem;
}

.lang-switcher-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-switcher-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(181, 144, 73, 0.05);
}

.lang-switcher-link.is-active {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(181, 144, 73, 0.1);
  cursor: default;
}

/* Dropdown Language Switcher Styles */
.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.6rem;
  background: transparent;
  border: 1.5px solid rgba(107, 107, 107, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(181, 144, 73, 0.05);
}

.lang-switcher-toggle:focus {
  outline: none;
}

.lang-switcher-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.lang-switcher-toggle[aria-expanded="true"] {
  color: var(--color-primary);
  background: rgba(181, 144, 73, 0.1);
  border-color: rgba(181, 144, 73, 0.3);
}

.lang-switcher-current {
  min-width: 1.5rem;
  text-align: center;
}

.lang-switcher-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-switcher-toggle[aria-expanded="true"] .lang-switcher-arrow {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 140px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.lang-switcher.is-open .lang-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  color: var(--color-text-gray);
  text-decoration: none;
  transition: all 0.15s ease;
}

.lang-switcher-option:hover,
.lang-switcher-option:focus {
  background: rgba(181, 144, 73, 0.08);
  color: var(--color-text-dark);
}

.lang-switcher-option:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.lang-switcher-option.is-active {
  color: var(--color-primary);
  background: rgba(181, 144, 73, 0.1);
  font-weight: 600;
}

.lang-option-code {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 1.5rem;
}

.lang-option-name {
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
}

.lang-option-check {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Navigation Language Switcher */
.nav-lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.nav-lang-switcher .lang-switcher-link {
  font-size: 0.8rem;
  min-width: 28px;
  height: 28px;
}

/* Mobile Language Switcher */
@media (max-width: 992px) {
  .nav-lang-switcher {
    margin: 1rem 0;
    justify-content: center;
  }
  
  .nav-lang-switcher .lang-switcher-list {
    gap: 0.75rem;
  }
  
  .nav-lang-switcher .lang-switcher-link {
    font-size: 0.9rem;
    min-width: 36px;
    height: 36px;
  }
}
