/*@import url('https://fgleapis/cssonts.googleapis.com/css?family=Noto+Sans:400,700');*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --brand-red: #ff0000;
  --brand-red-dark: #CC0000;
  --brand-dark: #1c2023;
  --brand-light: #fff5f5;
  --brand-gray: oklch(87.2% 0.01 258.338);
  --brand-light-gray: #f2f2f2;
}

.white-text {
  color: var(--brand-light) !important;
}

*{
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  color: #1C2023;
  overflow: visible !important;
  position: static !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
}

.h3-title, .h5-title {
  text-transform: none !important;
  font-weight: 600 !important;
}

.h3-title {
  font-size: 1.3rem !important;
  margin-bottom: 30px !important;
}

.h5-title {
  font-size: 1.1rem !important;
}

/* The ribbons */
.corner-ribbon{
  width: 170px;
  background: #f00;
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
  color: #f0f0f0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.corner-ribbon.sticky{
  position: fixed;
}

.corner-ribbon.shadow{
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.corner-ribbon.top-right{
  top: 30px;
  right: -50px;
  left: auto;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.corner-ribbon.red{background: #f00;}
.corner-ribbon.yellow{background: #ec0;color: #000;}

p.spacy {line-height:2}
p.tight {line-height:1}

span {line-height:1 !important}

@media(max-width: 575px) {
    #header .header-btn-collapse-nav {
        width: 75px;
        font-size: 20px
    }
    #header .header-nav-main nav > ul > li > a {
        display: block !important;
        text-align: center !important;
        font-size: 20px;
        font-weight: 400;
        padding: 8px 0px;
    }
}

/* Top bar container */
.topbar {
  background-color: #1a1d1f;
  color: #d1d5db;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  display: none;
}

.topbar i{
  font-size: 1rem;
  color: var(--brand-red);
}

.topbar i:hover{
  color: var(--brand-light);
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left {
  display: flex;
  gap: 1.5rem;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.topbar__item:hover {
  color: #ffffff;
}

.topbar__right {
  display: flex;
  gap: 1rem;
}

.topbar__link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar__link:hover {
  color: var(--brand-red);
}

/* Header base */
.site-header {
  position: -webkit-sticky; /* iOS Safari */
  position: sticky;
  top: 0;
  z-index: 9999 !important;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f3f3f3;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.site-header--scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header--scrolled .site-logo img {
  height: 50px;
}

.site-logo__title {
  font-size: 1.5rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
  margin: 0;
}

.site-logo__highlight {
  color: var(--brand-red);
}

.site-logo__tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
}

/* Desktop nav - hidden on mobile */
.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
    justify-content: space-evenly;
    width: 100%;
  }
}

/* Nav links */
.site-nav__link {
  text-decoration: none;
  font-weight: 600;
  color: #111827;
  transition: color 0.2s ease;
  border-radius: 8px;
  text-transform: uppercase;
}

.site-nav__link:hover {
  color: var(--brand-red);
  text-decoration: none !important;
}

.site-nav__link--active {
  color: var(--brand-red);
}

/* CTA button */
.site-nav__cta {
  text-decoration: none;
  background-color: var(--brand-red);
  color: #ffffff;
  padding: 0.5rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.35);
  font-weight: 500;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  text-transform: uppercase;
}

.site-nav__cta:hover {
  background-color: var(--brand-red-dark);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  text-decoration: none !important;
  color: white;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown__trigger {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown__trigger:focus {
  outline: 2px solid rgba(148, 163, 184, 0.7);
  outline-offset: 2px;
}

.nav-dropdown__icon {
  font-size: 0.75rem;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 14rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border-radius: 0 0 0.75rem 0.75rem;
  border-top: 2px solid var(--brand-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #111827;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.nav-dropdown__item:last-child {
  border-bottom: none;
}

.nav-dropdown__item:hover {
  background-color: var(--brand-light);
  text-decoration: none !important;
}

/* Mobile menu toggle */
.site-header__menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }
}

.menu-toggle__icon {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--brand-dark);
  border-radius: 999px;
}

/* Mobile nav drawer */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #f3f3f3;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.mobile-nav--open {
  display: flex;
  animation: mobile-fade-in-down 0.2s ease-out;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav__item {
  text-decoration: none !important;
  color: #111827;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  text-transform: uppercase;
}

.mobile-nav__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-nav__item--highlight {
  color: var(--brand-red);
  font-weight: 700;
}

.mobile-nav__item:active {
  text-decoration: none !important;
}
/* Animation */
@keyframes mobile-fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section wrapper */
.hero-section-wrapper {
  display: flex;
  flex-direction: column;
}

/* Hero section */
.hero-section {
  position: relative;
  min-height: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-dark);
  overflow: hidden;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    height: 700px;
    padding: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-content {
    height: 100%;
  }
}

.hero-badge {
  display: block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.hero-title {
  font-size: 2.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.br-md {
  display: none;
}

@media (min-width: 768px) {
  .br-md {
    display: block;
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--brand-red), #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: background 0.25s ease, color 0.25s ease, transform 0.1s ease;
  text-transform: uppercase;
}

.hero-btn--primary {
  background: var(--brand-red);
  color: white;
}

.hero-btn--primary:hover {
  background: var(--brand-red-dark);
  color: white;
  text-decoration: none !important;
}

.hero-btn--secondary {
  background: white;
  color: var(--brand-dark);
}

.hero-btn--secondary:hover {
  background: #f3f4f6;
  text-decoration: none !important;
}

.arrow-icon {
  font-size: 1.25rem;
  line-height: 0;
}

.hero-categories {
  margin-top: 2rem;
  max-width: 72rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  overflow: visible;
}

@media (min-width: 640px) {
  .hero-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .hero-categories {
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
  }
}

.hero-category {
  text-decoration: none;
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid #374151;
  padding: 0.75rem 0.5rem;
  color: white;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-category {
    padding: 1rem;
    font-size: 1rem;
  }
}

.hero-category:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  text-decoration: none !important;
  color: white;
}

.bg-hero {
  background-color: var(--brand-dark);
  align-items: center;
}

.bg-hero .hero-title {
  margin-bottom: 0.5rem;
}

@media (min-width: 426px){
  .bg-hero .hero-title {
    font-size: 2.85rem;
  }
}

.bg-hero .hero-subtitle {
  font-size: 1.1rem;
  max-width: none;
  margin: 0;
} 

@media (max-width:425px){
  .bg-hero .hero-subtitle {
    font-size: 1rem;
    }
}

/* Section background */
.cta-section {
  background-color: var(--brand-light);
  padding: 4rem 0;
  border-top: 4px solid var(--brand-red);
}

.cta-title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: black;
}

.cta-subtitle {
  max-width: 42rem;
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.cta-btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  transition: background 0.25s ease;
  border-radius: 0;
}

.cta-btn-primary:hover {
  background-color: var(--brand-red-dark);
  color: #fff;
}

.cta-btn-outline {
  background: transparent;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 0;
}

.cta-btn-outline:hover {
  background-color: var(--brand-red);
  color: var(--brand-light);
  text-decoration: none !important;
}

.contact-section {
  background-color: #ffffff;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact-card {
    flex-direction: row;
  }
}

.contact-sidebar {
  background-color: var(--brand-dark);
  color: #ffffff;
  padding: 3rem;
  flex: 0 0 33.333%;
}

.contact-sidebar__title {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.contact-sidebar__text {
  color: #9ca3af;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.contact-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item__icon {
  color: var(--brand-red);
  flex-shrink: 0;
}

.contact-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem;
}

.contact-item__text {
  margin: 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  padding: 3rem;
  flex: 0 0 66.666%;
}

.contact-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__button {
  background-color: var(--brand-red);
  color: #ffffff;
  padding: 0.9rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 220px;
  transition: background-color 0.25s ease, transform 0.1s ease;
}

@media (min-width: 768px) {
  .contact-form__button {
    width: auto;
  }
}

.contact-form__button:hover {
  background-color: var(--brand-red-dark);
  transform: translateY(-1px);
}

.contact-map {
  margin-top: 3rem;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(15, 23, 42, 0.35);
}

.contact-map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.contact-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.contact-map__label {
  background-color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-map__label-icon {
  color: var(--brand-red);
  display: inline-flex;
}

.contact-map__label-text {
  font-weight: 700;
  color: var(--brand-dark);
}

/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   NEWSLETTER ITEMS
======================================== */
.newsletter-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.newsletter-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-red);
  
}

.newsletter-thumbnail {
  flex-shrink: 0;
  display: block;
  width: 125px;
  height: 125px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--brand-light);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.newsletter-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsletter-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.newsletter-date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: var(--brand-dark);
  text-transform: none !important;
}

.newsletter-title a {
  color: inherit;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.newsletter-title a:hover {
  color: var(--brand-red);
}

.newsletter-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.newsletter-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-red);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--brand-red);
  border-radius: 4px;
  background: transparent;
  text-decoration: none !important;
}

.newsletter-cta:hover {
  background: var(--brand-red);
  color: white;
  
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .newsletter-item {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .newsletter-thumbnail {
    width: 100px;
    height: 100px;
    align-self: center;
  }

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

  .newsletter-description {
    font-size: 0.9375rem;
  }
}

/* Footer base */
.site-footer {
  background-color: #1a1d1f;
  color: var(--brand-gray);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--brand-red);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  min-width: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .footer-brand {
    justify-content: center;
  }
}

.footer-brand__mark {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand-red);
}

.footer-brand__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

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

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: #ffffff;
  text-transform: none !important;
}

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

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-list li + li {
  margin-top: 0.5rem;
}

.footer-list li i {
  color: var(--brand-red);
  font-size: 0.75rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.footer-list--contact li + li {
  margin-top: 0.75rem;
}

.footer-link {
  color: var(--brand-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--brand-red);
  text-decoration: none !important;
}

.footer-link--inline:hover {
  color: var(--brand-white);
}

.footer-link--phone {
  color: var(--brand-red);
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-link--small {
  font-size: 0.75rem;
}

.footer-bottom__links .footer-link:hover {
  color: var(--brand-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.footer-contact-text {
  color: var(--brand-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-detail {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: #6b7280;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom__text {
  margin: 0;
  color: var(--brand-gray);
}

.footer-bottom__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .footer-bottom__links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
  }
}

.footer-divider {
  color: #4b5563;
}

@media (max-width: 767px) {
  .footer-divider {
    display: none;
  }
}

.footer-credit {
  color: var(--brand-light);
  font-size: 0.75rem;
}

.footer-newsletter-text {
  color: var(--brand-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .footer-form-row {
    grid-template-columns: 1fr;
  }
}

.footer-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-form-label .required {
  color: var(--brand-red);
}

.footer-form-input {
  width: 100%;
  padding: 0.75rem;
  background-color: #2a2d2f;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease;
}

.footer-form-input:focus {
  outline: none;
  border-color: var(--brand-red);
  background-color: #1f2023;
}

.footer-form-input::placeholder {
  color: #6b7280;
}

.footer-form-submit {
  padding: 0.875rem 1.5rem;
  background-color: var(--brand-red);
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.footer-form-submit:hover {
  background-color: var(--brand-red-dark);
  transform: translateY(-1px);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.footer-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2a2d2f;
  color: var(--brand-light);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.footer-social-icons li a:hover {
  background-color: var(--brand-red);
  color: #ffffff;
}

/* ========================================
   PROPERTY MANAGEMENT PAGE STYLES
======================================== */

.pm-hero {
  position: relative;
  background-color: var(--brand-dark);
  padding: 6rem 0 8rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pm-hero {
    padding: 8rem 0 10rem;
  }
}

.pm-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
}

.pm-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-hero__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.pm-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .pm-hero__title {
    font-size: 3.75rem;
  }
}

.pm-hero__description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.pm-hero__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-red);
  font-size: 1.5rem;
  font-weight: 700;
}

.pm-hero__phone svg {
  flex-shrink: 0;
}

.pm-section {
  padding: 4rem 0;
}

.pm-section--white {
  background-color: #ffffff;
}

.pm-section--gray {
  background-color: #f2f2f2;
}

.pm-section--dark {
  background-color: var(--brand-dark);
}

.pm-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.pm-section__header--light {
  color: #ffffff;
}

.pm-section__subtitle {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.pm-section__subtitle--light {
  color: var(--brand-red);
}

.pm-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--brand-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .pm-section__title {
    font-size: 2.5rem;
  }
}

.pm-section__title--light {
  color: #ffffff;
}

.pm-section__intro-wrapper {
  display: flex;
  max-width: 48rem;
  margin: 0 auto;
}

.pm-section__intro {
  margin-top: -1rem;
  color: #6b7280;
  text-align: center;
  margin: 0 0 2.5rem;
  font-size: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 2rem;
  border: 2px solid #f3f4f6;
  border-radius: 0.125rem;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

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

.value-card__icon {
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.value-card__icon svg {
  width: 40px;
  height: 40px;
}

.value-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin: 0 0 0.75rem;
  text-transform: none !important;
}

.value-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* Services Grid (PM Section) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card (PM Section) */
.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  color: var(--brand-dark) !important;
  background-color: white !important;
  margin-bottom: 1rem;
  font-size: 48px;
  display: block;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-red);
  margin: 0 0 0.75rem;
  text-transform: none !important;
}

.service-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.additional-services {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.additional-services__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin: 0 0 1.5rem;
  text-transform: none !important;
}

.additional-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .additional-services__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
}

.service-item {
  display: flex;
  gap: 1rem;
}

.service-item__icon {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.service-item__description {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.accounting-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .accounting-section {
    flex-direction: row;
    align-items: center;
  }
}

.accounting-section__content {
  flex: 1;
}

.accounting-section__intro {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.accounting-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .accounting-features {
    max-width: 70%;
  }
}

@media (min-width: 640px) {
  .accounting-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.accounting-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accounting-feature__icon {
  color: var(--brand-red);
  flex-shrink: 0;
}

.accounting-feature span {
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
}

.accounting-section__images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.accounting-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.125rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accounting-image--2 {
  margin-top: 2rem;
}

.accounting-image--3 {
  margin-top: -2rem;
}

.pm-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pm-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pm-team-member {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .pm-team-member {
    flex-direction: row;
    align-items: flex-start;
  }
}

.pm-team-member:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pm-team-member__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pm-team-member__sidebar {
    width: 12rem;
  }
}

.pm-team-member__image-wrapper {
  width: 100%;
}

.pm-team-member__image {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

@media (max-width: 426px) {
  .pm-team-member__image {
    height: 20rem;
  }
}

.pm-team-member__content {
  flex: 1;
}

.pm-team-member__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0;
  text-transform: none !important;
}

.pm-team-member__title {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 20px !important;
  margin: 0 0 0.5rem;
}

.pm-team-member__bio {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.pm-team-member__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pm-team-member__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-red) !important;
  border: 1px solid var(--brand-red);
  text-decoration: none !important;
  transition: color 0.2s ease;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.125rem;
}

.pm-team-member__link:hover {
  background-color: var(--brand-red);
  color: var(--brand-light) !important;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-card {
  background-color: #3a3f43;
  padding: 1.5rem;
  border-radius: 0.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .experience-card {
    flex-direction: row;
  }
}

.experience-card__image {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .experience-card__image {
    width: 33.333%;
  }
}

.experience-card__image img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.125rem;
}

.experience-card__content {
  flex: 1;
}

@media (min-width: 768px) {
  .experience-card__content {
    width: 66.666%;
  }
}

.experience-card__title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  text-transform: none !important;
}

.experience-card__location {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.experience-card__list {
  color: #d1d5db;
  font-size: 0.875rem;
  list-style: disc;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.5rem;
}

.experience-card__list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  padding-left: 0.5rem;
}

.experience-card__list li:last-child {
  margin-bottom: 0;
}

.section-dark {
  background-color: var(--brand-dark);
  padding: 4rem 0;
  color: #e5e7eb;
}

.section-title-block {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 0.5rem 0 0;
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-subtitle--light,
.section-title--light {
  color: #f9fafb;
}

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

@media (min-width: 768px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  background-color: #3a3f43;
  border-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.insight-card__image-wrap {
  height: 12rem;
  overflow: hidden;
}

.insight-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.insight-card:hover .insight-card__image {
  transform: scale(1.1);
  opacity: 1;
}

.insight-card__body {
  padding: 1.5rem;
}

.insight-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.insight-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 0.75rem;
  transition: color 0.25s ease;
  text-transform: none !important;
}

.insight-card:hover .insight-card__title {
  color: var(--brand-red);
}

.insight-card__excerpt {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__link {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-red);
  text-decoration: none;
}

.insight-card__link:hover {
  text-decoration: underline;
}

/* Team Section Styles */
.team-section {
  background-color: #f3f4f6;
  padding: 4rem 0;
}

.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.team-section .section-title-block {
  margin-bottom: 3rem;
}

.team-section .section-subtitle {
  color: var(--brand-red);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.team-section .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--brand-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .team-section .section-title {
    font-size: 2.5rem;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.125rem;
  background-color: #111827;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.team-member-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .team-member-card__image-wrapper {
    padding-top: 133.33%;
  }
}

.team-member-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 0.7s ease, filter 0.3s ease;
}

.team-member-card:hover .team-member-card__image {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.team-member-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 50%, transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-card__overlay {
  opacity: 0.9;
}

.team-member-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .team-member-card__content {
    padding: 1.25rem;
  }
}

.team-member-card__name {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  text-transform: none !important;
}

.team-member-card__credentials {
  color: #d1d5db;
  font-weight: 400;
  font-size: 0.875rem;
}

.team-member-card__role {
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  margin-top: 0.25rem;
  display: inline-block;
}

.team-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--brand-dark);
  color: #ffffff;
  text-decoration: none !important;
}

/* Services Section Styles */
.services-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-section .section-title-block {
  margin-bottom: 3rem;
}

.services-section .section-subtitle {
  color: var(--brand-red);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.services-section .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--brand-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .services-section .section-title {
    font-size: 2.5rem;
  }
}

/* Services Grid (Services Section) */
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card (Services Section) */
.services-section .service-card {
  padding: 2rem;
  border: 2px solid #f3f4f6;
  border-radius: 0.125rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.services-section .service-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.services-section .service-card__icon {
  width: 3rem;
  height: 3rem;
  background-color: #f9fafb;
  color: var(--brand-red) !important;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services-section .service-card:hover .service-card__icon {
  background-color: var(--brand-red);
  color: #ffffff;
}

.services-section .service-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.services-section .service-card__description {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.services-section .service-card__link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ========================================
   MEMBER PROFILE PAGE
======================================== */

.member-profile-page {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding: 3rem 0;
}

.profile-header {
  display: flex;
  gap: 2rem;
}

@media (max-width: 425px) {
  .profile-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

.profile-header-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 425px) {
  .profile-header-content {
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

.profile-photo {
  width: 250px !important;
  height: 250px !important;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .profile-photo {
    width: 300px !important;
    height: 300px !important;
  }
}

.profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .profile-name {
    font-size: 2rem;
  }
}

.profile-title {
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0rem;
  display: inline-block;
}

.profile-credentials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.profile-credential i {
  font-size: 0.75rem;
}

.profile-achievement {
  margin-bottom: 0px !important;
}

.profile-contact-wrapper {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1023px) {
  .profile-contact-wrapper {
    flex-direction: column;
    
    gap: 1rem;
  }
  .profile-achievement {
    max-width: 300px;
    text-align: center;
  }
}

.profile-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none !important;
  color: #333;
}

@media (max-width: 425px) {
  .profile-contact-card {
    width: 100%;
    justify-content: center;
  }
}

.profile-contact-card:hover {
  background-color: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.profile-contact-card i {
  font-size: 1.5rem;
  color: var(--brand-red);
}

.profile-contact-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

.profile-contact-card:hover span {
  color: var(--brand-red) !important;
}

.profile-tabs {
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 2px solid #dee2e6;
}

.profile-tabs .nav-link {
  color: var(--brand-dark) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .profile-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.profile-tabs .nav-link:hover {
  color: var(--brand-red) !important;
  border-top-color: var(--brand-red) !important;
}

.profile-tabs .nav-link.active {
  color: var(--brand-red) !important;
  border-top-color: var(--brand-red) !important;
  background: none;
}

.profile-tab-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .profile-tab-content {
    padding: 1.5rem;
  }
}

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

.profile-section:last-child {
  margin-bottom: 0;
}

.profile-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.profile-section-content p {
  color: var(--brand-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.profile-tag {
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #555;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.profile-tag:hover {
  background-color: #e0e0e0;
}

.profile-transactions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-transactions li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.profile-transactions li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--brand-red);
}

.profile-table {
  margin-top: 0;
}

.profile-table thead th {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.profile-table tbody td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  color: #555;
}

.profile-table tbody tr:hover {
  background-color: #f8f9fa;
}

/* ========================================
   iOS SAFARI STICKY HEADER FIX
======================================== */
@supports (-webkit-overflow-scrolling: touch) {
  /* iOS-specific fixes - only apply on iOS devices */
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Force hardware acceleration for sticky on iOS */
  .site-header {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
