/* 
  V3 Redesign Styles
  Focus: Immersive, High-Contrast, Conversion-Optimized
*/

:root {
  --brand-dark: #2A2E33;
  --brand-orange: #FF5A1F;
  --brand-light: #FFFFFF;
  --brand-off-white: #FAFAFA;
  --text-main: #2A2E33;
  --text-muted: #525B66;
  --accent-soft: rgba(255, 90, 31, 0.08);
}

/* --- GRAIN TEXTURE OVERLAY --- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* --- BRAND TONE SECTION --- */
.brand-tone-section {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 0px solid var(--brand-orange);
  /* Accent border */
  padding-top: 40px;
}

/* Paragraphs follow global p rule */
.brand-tone-section .highlight-p {
  color: var(--brand-dark);
  font-weight: 500;
}

/* --- BACKGROUND PATTERNS --- */
.bg-pattern-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-pattern-dots {
  background-image: radial-gradient(rgba(255, 90, 31, 0.05) 2px, transparent 2px);
  background-size: 24px 24px;
}

.bg-pattern-topographic {
  background-color: #fcfcfc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff5a1f' fill-opacity='0.03'%3E%3Cpath d='M39.602 0c-.545 1.02-1.06 2.21-1.545 3.57C36.51 7.91 35.1 13 35.1 13s-2.11 3.12-3.12 4.12c-1.12 1.12-3.12 2.12-4.12 3.12s-4.12 3.12-5.12 4.12c-1.12 1.12-2.12 2.12-3.12 3.12S16.12 32.12 15 33s-3.12 2.12-4.12 3.12-3.12 2.12-4.12 3.12c-1.12 1.12-2.12 2.12-3.12 3.12S.12 44.12 0 45v1h1c1 0 2-1 3-2 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3 1-1 2-2 3-3L39.602 0z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-blueprint {
  background-color: var(--brand-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* --- SECTION DIVIDERS --- */
.divider-wave {
  width: 100%;
  height: 60px;
  background-color: var(--brand-off-white);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,197.3C960,213,1056,203,1152,181.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z' fill='%23000000'/%3E%3C/svg%3E");
  mask-size: cover;
  margin-top: -59px;
  position: relative;
  z-index: 10;
}

/* --- LOCATIONS SECTION --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.location-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

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

.location-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.location-card-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.location-card:hover .location-card-content {
  background: rgba(255, 255, 255, 0.1);
}

.location-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 5;
  background: var(--brand-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.3);
  font-family: 'Montserrat', sans-serif;
}

h1,
.hero-v3-content h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  /* 32px */
  line-height: 1.2em;
  color: white;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-size: 1.125rem;
  /* 18px */
  letter-spacing: 3px;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.location-card-content h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.location-card-content p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  /* 20px */
  line-height: 1.3em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* --- GLOBAL REFINEMENTS --- */
.section-padding {
  padding: 30px 5%;
}

/* Rounded corners for a friendly look */

.btn {
  border-radius: 50px !important;
}

/* Softer rounded corners for containers */
img,
.card,
.bento-v3-item,
.pricing-card {
  border-radius: 20px !important;
}

/* Even more squared */

/* --- DECORATIVE DOTS --- */
.dots-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  /* Tighter from 4px */
  padding: 10px 0;
  /* Tighter from 15px */
  opacity: 0.3;
}

.dots-separator .dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  border-radius: 50%;
}

/* --- HERO V3 --- */
.hero-v3 {
  position: relative;
  min-height: 60vh;
  /* Shortened from 85vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-color: var(--brand-dark);
  overflow: hidden;
  padding: 80px 5%;
}

.hero-v3-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-v3-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-v3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 90, 31, 0.5);
  /* Brand Orange Overlay */
  z-index: 2;
}

.hero-v3-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
}

/* Hero Heading handled in global h1 rule */

.hero-v3 p {
  /* Follows global p rule */
  color: white;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SERVICE GRID V3 --- */
.services-section {
  padding: 100px 5%;
  background: var(--brand-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: white;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.service-card.orange .overlay {
  background: linear-gradient(to bottom, rgba(255, 90, 31, 0.2) 0%, rgba(255, 90, 31, 0.9) 100%);
}

.service-card.grey .overlay {
  background: linear-gradient(to bottom, rgba(42, 46, 51, 0.2) 0%, rgba(42, 46, 51, 0.9) 100%);
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-card h3 {
  /* Follows global h3 rule (18px) */
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

/* --- BENTO GRID V3 --- */
.bento-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-v3-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bento-v3-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.9;
}

.bento-v3-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.bento-v3-item.orange {
  background: var(--brand-orange);
  color: white;
}

.bento-v3-item.grey {
  background: var(--brand-dark);
  color: white;
}

.bento-v3-item.orange::after,
.bento-v3-item.grey::after {
  display: none;
}

.bento-v3-content {
  position: relative;
  z-index: 3;
}

.bento-v3-item h3 {
  /* Follows global h3 rule (18px) */
  margin-bottom: 0.5rem;
  color: inherit;
}

.bento-v3-item.orange h3,
.bento-v3-item.grey h3 {
  color: white;
}

/* Grid Mapping */
.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.item-small {
  grid-column: span 1;
  grid-row: span 1;
}

/* Marker Notes */
.note-top {
  position: absolute;
  top: -20px;
  left: 20px;
  transform: rotate(-5deg);
  background: var(--brand-orange);
  color: white !important;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.note-bottom {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(3deg);
  background: var(--brand-dark);
  color: white !important;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .bento-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .item-large,
  .item-medium {
    grid-column: span 2;
  }
}



/* --- TESTIMONIAL VERSIONS --- */

/* Version 1: Slack Style */
.testimonial-slack {
  background: #f8f8f8;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid var(--brand-orange);
}

.slack-message {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.slack-avatar {
  width: 45px;
  height: 45px;
  background: var(--brand-dark);
  border-radius: 4px;
}

.slack-name {
  font-weight: 700;
  color: var(--brand-dark);
  margin-right: 8px;
}

.slack-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slack-reactions {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.reaction {
  background: white;
  border: 1px solid #ddd;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* Version 2: Trading Cards */
.testimonial-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.trading-card {
  background: white;
  border: 2px solid var(--brand-dark);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.trading-card:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: var(--brand-orange);
}

.card-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background: #eee;
}

.card-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-stat span {
  color: var(--brand-orange);
}

/* --- MODERN DYNAMIC TESTIMONIALS --- */
.testimonial-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-modern-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-modern-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(255, 90, 31, 0.2);
}

.testimonial-modern-card:hover::after {
  opacity: 1;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--brand-dark);
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  font-weight: 500;
}

.testimonial-quote::before {
  content: '“';
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: 5rem;
  color: var(--brand-orange);
  opacity: 0.1;
  font-family: 'Georgia', serif;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar svg {
  width: 28px;
  height: 28px;
  fill: white;
  opacity: 0.9;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--brand-orange);
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .testimonial-modern-card {
    padding: 1.5rem;
  }
}

/* Version 3: Post-it Notes */
.testimonial-postits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}

.postit {
  width: 250px;
  height: 250px;
  padding: 30px;
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transform: rotate(-2deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.postit:nth-child(even) {
  transform: rotate(3deg);
  background: var(--brand-orange);
  color: white;
}

.postit p {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* --- PRICING V3 --- */
.pricing-section {
  padding: 100px 5%;
  background: var(--brand-off-white);
}

.pricing-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card-v3 {
  background: white;
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.pricing-card-v3.featured {
  background: var(--brand-dark);
  color: white;
  border-color: var(--brand-orange);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card-v3 h3 {
  /* Follows global h3 rule (18px) */
  margin-bottom: 1rem;
}

.pricing-card-v3.featured h3 {
  color: var(--brand-orange);
}

.price-v3 {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 2rem;
}

.price-v3 span {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.7;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card-v3.featured .features-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {

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

  .pricing-card-v3.featured {
    transform: scale(1);
  }
}

/* --- ACCORDION (FAQ) --- */
.accordion-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--brand-dark);
  transition: background 0.2s;
}

.accordion-header:hover {
  background: rgba(255, 90, 31, 0.02);
}

.accordion-header h4 {
  margin: 0;
  font-size: 1rem;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: #fafafa;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.accordion-item.active {
  border-color: var(--brand-orange);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* Large enough for content */
  padding-top: 0.5rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--brand-orange);
}

/* --- OFFICE SPECIFIC V3 --- */
.office-spec-card {
  background: white;
  border: 2px solid var(--brand-dark);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.office-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f2f2f2;
}

.office-spec-row:last-child {
  border-bottom: none;
}

.office-spec-row .spec-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.office-spec-row .spec-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.amenity-icons-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

.amenity-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-dark);
  font-size: 0.95rem;
}

.amenity-icon-item span {
  font-size: 1.4rem;
  display: inline-block;
}

.office-gallery-featured {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.address-marker-v3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  opacity: 0.8;
}