:root {
  --bg-primary: #ffffff;
  --bg-surface: #fcfcfc;
  --bg-surface-light: #f0f0f0;
  --text-primary: #000000;
  --text-secondary: #222222;
  
  /* Brand Colors from constraints */
  --brand-blue: #0A58CA; 
  --brand-blue-glow: rgba(10, 88, 202, 0.15);
  --brand-red: #E11D1D;
  --brand-red-glow: rgba(225, 29, 29, 0.15);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-brand-red { color: var(--brand-red); }
.text-brand-blue { color: var(--brand-blue); }
.brand-red { color: var(--brand-red); }
.brand-blue { color: var(--brand-blue); }
.italic-bold { font-family: var(--font-serif); font-size: 2rem; font-style: italic; font-weight: bold; }
.ml-sm { margin-left: 0.5rem; }
.mt-lg { margin-top: 40px; }
.text-sm { font-size: 0.875rem; }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
  animation: pulse 2s infinite ease-in-out;
}
.logo-a { color: var(--brand-red); margin-right: 0.5rem; }
.logo-h { color: var(--brand-blue); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

/* Typography elements */
.subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--brand-blue);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .section-title { font-size: 3.5rem; }
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.9;
  max-width: 500px;
  margin-top: 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .brand-title,
.navbar:not(.scrolled) .brand-subtitle,
.navbar:not(.scrolled) .mobile-toggle {
  color: #ffffff !important; /* keep white over hero dark overlay */
}

.navbar:not(.scrolled) .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
}
.navbar:not(.scrolled) .btn-outline:hover {
  background-color: #ffffff;
  color: var(--text-primary);
}


.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-icon {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: bold;
}
.icon-a { color: var(--brand-red); z-index: 2;}
.icon-h { color: var(--brand-blue); margin-left: -5px; }

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
}
.brand-subtitle {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}
.nav-link {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--brand-blue) !important;
}
.navbar.scrolled .nav-link {
  color: #081828;
}
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--brand-blue) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline {
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
}
.btn-outline:hover {
  background-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 4px 15px var(--brand-blue-glow);
}
.btn-primary {
  background-color: var(--brand-blue);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--text-primary);
  color: #fff;
}
.btn-contact {
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
}
.btn-contact:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--brand-blue); }

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Keeping a dark overlay so the white text pops on the hero image */
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.hero.animating .hero-img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-title span {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}
@media (min-width: 768px) {
  .hero-title { font-size: 5.5rem; }
}
.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-content .btn-contact {
  border-color: #fff;
  color: #fff;
}
.hero-content .btn-contact:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.scroll-indicator span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  top: -50%;
  animation: scrollDown 2s infinite ease-in-out;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* Trust Bar */
.trust-bar {
  background-color: var(--bg-surface);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 2.5rem 0;
  position: relative;
  z-index: 20;
}
.trust-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}
.trust-item {
  flex: 1 1 200px;
  padding: 1rem;
}
@media (min-width: 768px) {
  .trust-item:not(:last-child) { border-right: 1px solid rgba(0,0,0,0.1); }
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.trust-title i { margin-right: 0.5rem; color: var(--brand-blue); font-size: 1.5rem; }
.trust-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services */
.services-section {
  padding: 8rem 0;
  position: relative;
}
.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.title-divider {
  width: 50px;
  height: 2px;
  background-color: #a57c43;
  margin: 1.5rem auto;
}
.section-header-centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  grid-auto-rows: 380px;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bento-item {
  position: relative;
  background-color: var(--bg-surface);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.bento-item.large {
  grid-column: span 1;
  grid-row: span 2;
}
@media (min-width: 768px) {
  .bento-item.large { grid-column: span 2; }
}
.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
}
.bento-item:hover .bento-img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #fff;
}
.bento-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  transition: background 0.3s, border-color 0.3s;
}
.bento-icon i { color: #fff; transition: color 0.3s; }
.bento-item:hover .bento-icon { border-color: var(--brand-blue); background: var(--brand-blue); }

.bento-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  color: #fff;
}
.bento-item.large h3 { font-size: 2.5rem; }
.bento-item:hover .hover-blue { color: var(--brand-blue); }
.bento-item:hover .hover-red { color: var(--brand-red); }

.bento-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}
.bento-item.large p { font-size: 1rem; }
.bento-item:hover p {
  transform: translateY(0);
  opacity: 1;
}

.services-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-sm { grid-template-columns: repeat(4, 1fr); }
}
.service-box {
  background-color: var(--bg-surface);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.service-box:hover {
  background-color: #fff;
  border-color: rgba(10, 88, 202, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.service-box i {
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-box h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-primary);
}
.service-box:hover .icon-hover-blue { color: var(--brand-blue); }
.service-box:hover .icon-hover-red { color: var(--brand-red); }


/* About Section */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-surface);
  position: relative;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .about-container { flex-direction: row; align-items: center; }
}
.about-img-box {
  position: relative;
  flex: 1;
}
.about-bg-accent {
  position: absolute;
  top: 2rem;
  right: -2rem;
  left: auto;
  width: 100%;
  height: 100%;
  background-color: var(--brand-blue);
  border-radius: 8px;
  opacity: 0.1;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  right: auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.badge-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
  color: var(--brand-blue);
}
.badge-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}
.about-content {
  flex: 1;
}
.about-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .about-features { flex-direction: row; align-items: center; gap: 2rem; }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.bg-blue-subtle { background-color: rgba(10, 88, 202, 0.1); }
.bg-red-subtle { background-color: rgba(225, 29, 29, 0.1); }

.feature-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.feature-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.feature-divider {
  display: none;
  width: 1px;
  height: 48px;
  background-color: rgba(0,0,0,0.1);
}
@media (min-width: 640px) {
  .feature-divider { display: block; }
}

/* Footer Section */
.footer {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #121215;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.footer-top-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brand-red), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 2fr; }
}
.brand-icon-text {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.social-links a:hover {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.social-links a.instagram:hover {
  background: linear-gradient(to top right, var(--brand-red), #9b51e0);
  border-color: transparent;
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  color: #fff;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--brand-blue); letter-spacing: 0.05em; color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 0.4rem;
}
.contact-item a {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.contact-item .pulse-dot i {
  font-size: 6px;
  animation: pulse 1.5s infinite;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.license-badge {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

/* Animations */
.fade-in { opacity: 0; }
.slide-up { transform: translateY(30px); }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; animation-delay: 100ms; }
.delay-2 { transition-delay: 200ms; animation-delay: 200ms; }
.delay-3 { transition-delay: 300ms; animation-delay: 300ms; }
.delay-4 { transition-delay: 400ms; animation-delay: 400ms; }

.anim-active .fade-in {
  animation: fadeIn 0.8s forwards ease-out;
}
.anim-active .slide-up {
  animation: slideUp 0.8s forwards cubic-bezier(0.5, 0, 0, 1);
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

/* WHITE MULTI-PAGE THEME OVERRIDES (Footer Base Light) */
.footer {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer h4 { color: var(--text-primary); }
.footer-desc { color: var(--text-secondary); }
.social-links a { color: var(--text-secondary); border-color: rgba(0,0,0,0.2); }
.social-links a:hover { color: #fff; background-color: var(--brand-blue); border-color: var(--brand-blue); }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--brand-blue); }
.contact-item span { color: var(--text-secondary); }
.contact-item a { color: var(--text-primary); }
.contact-item a:hover { color: var(--brand-blue); }
/* ABOUT SECTION FIXES */
.about-img {
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Making it look richer */
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card .quote-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    color: var(--brand-blue);
    opacity: 0.1;
}
.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.client-name {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}
.client-project {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--brand-blue);
}

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.1); }
.footer-bottom p { color: var(--text-secondary); font-weight: 300; letter-spacing: 0.05em; font-size: 0.85rem; }
.license-badge { border: 1px solid rgba(0,0,0,0.2); color: var(--text-primary); font-weight: 600; letter-spacing: 0.15em; font-size: 0.75rem; }

/* WHITE THEME TRUST BAR OVERRIDES */
.trust-bar {
  background: var(--bg-primary);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-title { color: var(--text-primary); }
.trust-subtitle { color: var(--text-secondary); }
.trust-icon { color: var(--brand-blue); }
.trust-item { border-color: rgba(0,0,0,0.1); }
.trust-grid > :not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.1);
}

/* HERO CSS TEXT OVERRIDES */
.hero-content .subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
