.field-error {
  display: block;
  color: #c62828;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}
.phone-input {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: flex-start;
}
.phone-input select {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 160px;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: #fff;
}
.phone-input input {
  flex: 1;
  min-width: 0;
}
.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-field .field-error {
  width: 100%;
}
@media (max-width: 480px) {
  .phone-input {
    flex-direction: column;
    gap: 12px;
  }
  .phone-input input,
  .phone-input select {
    width: 100%;
    max-width: 100%;
  }
  .contact-form button,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --brand-primary: #0b61a4;
  --brand-secondary: #1877f2;
  --brand-accent: #00d4aa;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --background: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --success: #48bb78;
  --warning: #ed8936;
  --error: #e53e3e;
  --info: --brand-primary;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
  word-break: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  word-break: break-word;
  word-wrap: break-word;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}
p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
    padding: 0 var(--space-xl);
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1480px;
    padding: 0 var(--space-2xl);
  }
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: -0.5px;
}
.section-intro {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: var(--space-xl);
  }
  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .section-intro {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: var(--space-lg);
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
@media (min-width: 1440px) {
  .section-header {
    margin-bottom: var(--space-3xl);
  }
  .section-header h2 {
    font-size: 2.75rem;
    margin-bottom: var(--space-lg);
  }
  .section-intro {
    font-size: 1.25rem;
    max-width: 700px;
  }
}
@media (min-width: 1920px) {
  .section-header h2 {
    font-size: 3.25rem;
  }
  .section-intro {
    font-size: 1.4rem;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}
.loading-content {
  text-align: center;
  color: #fff;
}
.loading-logo {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}
.loading-logo span {
  font-weight: 400;
}
.loading-logo img.site-logo {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo-img__img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .loading-logo img.site-logo {
    max-height: 60px;
  }
  .brand-logo {
    height: 32px;
  }
  .footer-logo-img__img {
    height: 36px;
  }
  .brand-text {
    font-size: 1rem;
  }
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto var(--space-md);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  transform: translateY(0);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.brand span {
  font-weight: 400;
  color: var(--text-primary);
}
.brand i {
  font-size: 1.25rem;
}
.brand-logo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.brand-text {
  font-size: 1.125rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-primary);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.nav-link.active,
.nav-link:hover {
  color: var(--brand-primary);
  background: rgba(11, 97, 164, 0.05);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
}
.cta-btn {
  background: var(--brand-primary) !important;
  color: #fff !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}
.cta-btn:hover {
  background: var(--brand-secondary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.nav-toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 0;
}
.nav-close {
  display: none;
}
@media (max-width: 768px) {
  .nav-close {
    display: flex;
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: 0 0;
    border: none;
    font-size: 1.75rem;
    color: var(--brand-primary);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-close:hover {
    background: rgba(11, 97, 164, 0.1);
    color: var(--brand-secondary);
  }
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--brand-primary);
  margin: 4px 0;
  transition: var(--transition-fast);
  border-radius: 3px;
}
.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(8px, 8px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy .lead,
.hero-copy h1,
.hero-ctas,
.quick-stats {
  animation: heroSlideUp 0.8s ease-out forwards;
  opacity: 0;
}
.hero-copy h1 {
  animation-delay: 0.2s;
}
.hero-copy .lead {
  animation-delay: 0.4s;
}
.hero-ctas {
  animation-delay: 0.6s;
}
.quick-stats {
  animation-delay: 0.8s;
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.go-to-top {
  position: fixed;
  bottom: 150px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.go-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.go-to-top:hover {
  background: var(--brand-secondary);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(11, 97, 164, 0.4);
}
.go-to-top:active {
  transform: translateY(-2px) scale(0.95);
}
@media (max-width: 768px) {
  .go-to-top {
    bottom: 130px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float a,
.whatsapp-float button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1.5rem;
}
.whatsapp-float a:hover,
.whatsapp-float button:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-2xl);
}
.whatsapp-float.pulse a,
.whatsapp-float.pulse button {
  animation: pulse 1.5s ease-in-out;
}
.whatsapp-tooltip {
  position: absolute;
  bottom: 82px;
  right: 50%;
  transform: translateX(50%) translateY(10px);
  background: var(--text-primary);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero {
  background: linear-gradient(
    135deg,
    rgba(11, 97, 164, 0.03) 0,
    rgba(24, 119, 242, 0.02) 100%
  );
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(11, 97, 164, 0.01) 50%,
    transparent 70%
  );
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(1.75rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
}
@media (min-width: 1440px) {
  .hero-copy h1 {
    font-size: 4.5rem;
    margin-bottom: var(--space-2xl);
    letter-spacing: -1.5px;
  }
}
@media (min-width: 1920px) {
  .hero-copy h1 {
    font-size: 5.25rem;
  }
}
.lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 4vw, 1.25rem);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .lead {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}
@media (min-width: 1440px) {
  .lead {
    font-size: 1.4rem;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .lead {
    font-size: 1.6rem;
    max-width: 750px;
  }
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .cta {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
  }
}
@media (min-width: 1440px) {
  .cta {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    min-height: 52px;
  }
}
@media (min-width: 1920px) {
  .cta {
    padding: 1.15rem 2.75rem;
    font-size: 1.15rem;
    min-height: 56px;
  }
}
.cta.primary {
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: var(--shadow-lg);
}
.cta.primary:hover {
  background: var(--brand-secondary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.cta.secondary {
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
}
.cta.secondary:hover {
  background: var(--brand-primary) !important;
  color: #fff !important;
}
.cta.outline {
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
}
.cta.outline:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary) !important;
  color: #fff !important;
}
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  list-style: none;
}
.quick-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.quick-stats strong {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--brand-primary);
  font-family: "Playfair Display", serif;
  display: inline-block;
  min-width: 3ch;
}
.quick-stats strong.counting {
  animation: countGlow 0.6s ease-in-out;
}
@keyframes countGlow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.quick-stats span {
  color: var(--text-secondary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
}
@media (max-width: 480px) {
  .quick-stats strong {
    font-size: 1.3rem;
  }
  .quick-stats span {
    font-size: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .quick-stats strong {
    font-size: 2.5rem;
  }
  .quick-stats span {
    font-size: 1.1rem;
  }
}
@media (min-width: 1920px) {
  .quick-stats strong {
    font-size: 3rem;
  }
  .quick-stats span {
    font-size: 1.25rem;
  }
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-slow);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  animation: heroReveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both,
    heroFloat 9s ease-in-out 0.7s infinite alternate;
}
.hero-media:hover img {
  transform: translateY(-6px) scale(1.03) rotateX(2deg) rotateY(-2deg);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(
      40% 40% at 25% 20%,
      rgba(10, 37, 64, 0.2),
      transparent 70%
    ),
    radial-gradient(
      45% 45% at 75% 80%,
      rgba(236, 72, 153, 0.2),
      transparent 65%
    );
  filter: blur(30px);
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%) rotate(0.001deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.hero-media:hover::after {
  transform: translateX(120%) rotate(0.001deg);
}
@keyframes heroFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}
@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none !important;
  }
  .hero-media::after,
  .hero-media::before {
    animation: none !important;
    transition: none !important;
  }
}
.hero-media.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: auto;
  max-width: 600px;
  padding: 0;
  border-radius: var(--radius-2xl);
  background: 0 0;
  box-shadow: none;
  position: relative;
}
.hero-media.hero-logo img.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 600px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: heroReveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both,
    heroFloat 9s ease-in-out 0.7s infinite alternate;
}
@media (min-width: 1024px) {
  .hero-media.hero-logo img.hero-logo {
    width: 90%;
  }
}
.hero-media.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%) rotate(0.001deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.hero-media.hero-logo:hover::after {
  transform: translateX(120%) rotate(0.001deg);
}
.hero-badges {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  border: 1px solid rgba(11, 97, 164, 0.2);
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.two-col {
  display: flex;
  gap: 1rem;
}
.two-col > * {
  flex: 1;
}
@media (max-width: 600px) {
  .two-col {
    flex-direction: column;
  }
}
.btn,
.card-btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  font-weight: 600;
  border-radius: 8px;
  box-sizing: border-box;
}
.btn {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.btn:hover {
  background: var(--brand-secondary) !important;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .btn {
    width: 100%;
    min-height: 50px;
    font-size: 1.05rem;
    padding: 1rem;
  }
}
html {
  scroll-behavior: smooth;
}
a,
button {
  transition: all 0.18s ease;
}
.card img {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.card img:hover {
  transform: scale(1.03);
  filter: brightness(0.98);
}
.projects h2 {
  margin-bottom: 0.25rem;
}
.section-intro {
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
}
.card img {
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 1rem;
  flex: 1;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.3;
}
.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .card-body {
    padding: 0.75rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.9rem;
  }
}
@media (min-width: 1440px) {
  .card-body {
    padding: 1.5rem;
  }
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .card p {
    font-size: 1.05rem;
  }
}
@media (min-width: 1920px) {
  .card-body {
    padding: 1.75rem;
  }
  .card h3 {
    font-size: 1.75rem;
  }
  .card p {
    font-size: 1.15rem;
  }
}
.card-btn {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: var(--brand) !important;
  border: 0;
  border-radius: 8px;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(11, 97, 164, 0.08);
  min-width: 110px;
  text-align: center;
  font-weight: 600;
}
.features {
  padding: 2rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.feature {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #f0f3f6;
  padding: 0 0 1rem 0;
}
.feature img {
  height: 160px;
  object-fit: cover;
}
.feature h3,
.feature h4 {
  margin: 0.75rem 1rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.3;
}
.feature p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (min-width: 1440px) {
  .feature h3,
  .feature h4 {
    font-size: 1.5rem;
    margin: 1rem 1.25rem;
  }
  .feature p {
    font-size: 1.05rem;
    margin: 0 1.25rem 1rem;
  }
}
@media (min-width: 1920px) {
  .feature h3,
  .feature h4 {
    font-size: 1.75rem;
  }
  .feature p {
    font-size: 1.15rem;
    line-height: 1.8;
  }
}
.gallery-slideshow {
  max-width: 900px;
  margin: 2rem auto;
  position: relative;
}
.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: slideIn 0.5s ease-in-out;
}
.gallery-slide.active {
  display: block;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.slide-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.slide-nav.prev {
  left: 20px;
}
.slide-nav.next {
  right: 20px;
}
.slide-nav i {
  font-size: 1.2rem;
  color: var(--brand-primary);
}
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}
.slide-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d5dd;
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dots .dot:hover {
  background: #98a2b3;
  transform: scale(1.2);
}
.slide-dots .dot.active {
  background: var(--brand-primary);
  width: 32px;
  border-radius: 6px;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .gallery-slideshow {
    margin: 1rem auto;
  }
  .slideshow-container {
    aspect-ratio: 4/3;
  }
  .slide-nav {
    width: 40px;
    height: 40px;
  }
  .slide-nav.prev {
    left: 10px;
  }
  .slide-nav.next {
    right: 10px;
  }
  .slide-caption {
    font-size: 1rem;
    padding: 1.5rem 1rem 1rem;
  }
  .slideshow-info {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0 0.5rem;
  }
  .slide-counter {
    font-size: 0.85rem;
    min-width: 50px;
  }
  .slide-progress {
    flex: 1;
    height: 5px;
  }
  .slide-progress-bar {
    height: 100%;
  }
  .slide-timer-bar {
    height: 2px;
  }
}
.slideshow-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.slide-counter {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  min-width: 60px;
  text-align: center;
}
.slide-progress {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.slide-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-radius: 10px;
  transition: width 0.1s linear;
}
.slide-timer-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0%;
  background: rgba(10, 37, 64, 0.25);
  border-radius: 10px;
  transition: width var(--timer-duration, 5000ms) linear;
}
.success-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}
.success-notification.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.success-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 320px;
  max-width: 400px;
}
.success-icon {
  font-size: 2rem;
  color: #10b981;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.success-message {
  flex: 1;
}
.success-message h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #0a2540;
}
.success-message p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}
.success-close {
  background: 0 0;
  border: none;
  font-size: 1.2rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.success-close:hover {
  color: #64748b;
}
@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .success-notification {
    top: 70px;
    right: 10px;
    left: 10px;
  }
  .success-content {
    min-width: auto;
    padding: 1rem;
  }
  .success-icon {
    font-size: 1.5rem;
  }
  .success-message h4 {
    font-size: 1rem;
  }
  .success-message p {
    font-size: 0.85rem;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1rem;
}
.gallery-grid img {
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.location {
  padding: 2rem 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.address h4 {
  margin: 0 0 0.5rem;
}
.map iframe {
  width: 100%;
  border-radius: 8px;
}
.about {
  padding: 2rem 0;
}
.contact {
  padding: 2rem 0;
}
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
textarea {
  padding: 0.8rem;
  border: 1px solid #e6e9ec;
  border-radius: 8px;
  width: 100%;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.newsletter-bar {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  color: #fff;
  padding: 1rem 0;
}
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.newsletter-text h3 {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.2rem;
}
.newsletter-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  max-width: 600px;
}
.newsletter-form input {
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  min-width: 250px;
  font-size: 1rem;
  flex: 1;
}
.newsletter-form .btn {
  white-space: nowrap;
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 2px solid #fff !important;
  min-width: 120px;
  height: 44px;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .newsletter-form .btn {
    width: 100%;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .newsletter-form input {
    min-width: 300px;
    font-size: 1.05rem;
  }
  .newsletter-form .btn {
    padding: 0.75rem 2rem;
  }
}
@media (min-width: 1440px) {
  .newsletter-form input {
    min-width: 350px;
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
  }
  .newsletter-form .btn {
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
  }
}
@media (min-width: 1920px) {
  .newsletter-form input {
    min-width: 400px;
    font-size: 1.15rem;
  }
  .newsletter-form .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .newsletter-bar {
    padding: 0.75rem 0;
  }
  .newsletter-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }
}
.projects {
  padding: var(--space-3xl) 0;
}
@media (min-width: 1440px) {
  .projects {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .projects {
    padding: 6rem 0;
  }
}
.project-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.project-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  will-change: transform, box-shadow;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-2xl);
}
.project-image {
  position: relative;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.project-card:hover .project-image img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.project-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.project-badge.ready {
  background: var(--success);
  color: #fff;
}
.project-badge.construction {
  background: var(--warning);
  color: #fff;
}
.project-badge.upcoming {
  background: var(--brand-primary);
  color: #fff;
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: var(--space-lg);
  z-index: 1;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.overlay-content {
  text-align: center;
  color: #fff;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.project-card:hover .overlay-content {
  transform: translateY(0);
}
.overlay-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: #fff;
}
.overlay-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-md);
}
.overlay-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}
.overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.overlay-cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.overlay-cta.ghost {
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.overlay-cta.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.overlay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.overlay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.overlay-btn i {
  font-size: 1.25rem;
}
.project-content {
  padding: var(--space-xl);
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.project-header h3 {
  margin: 0;
  color: var(--text-primary);
}
.project-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  font-family: "Playfair Display", serif;
}
.project-details {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}
.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.detail-item i {
  color: var(--brand-primary);
}
.project-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.project-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.card-btn {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary) !important;
  color: #fff !important;
}
.card-btn.primary {
  background: var(--brand-primary) !important;
  color: #fff !important;
}
.card-btn.secondary {
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
}
.card-btn.outline {
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
}
.card-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-secondary) !important;
}
.features {
  padding: var(--space-3xl) 0;
  background: var(--surface);
}
@media (min-width: 1440px) {
  .features {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .features {
    padding: 6rem 0;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  background: rgba(11, 97, 164, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.25rem;
}
.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature h4 {
  margin: var(--space-lg) var(--space-lg) var(--space-sm);
  color: var(--text-primary);
}
.feature p {
  margin: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}
.trust-section {
  padding: var(--space-3xl) 0;
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.trust-item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: var(--transition-normal);
}
.trust-item:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.award-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: #fff;
  font-size: 2rem;
}
.trust-item h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.trust-item p {
  margin: 0;
  color: var(--text-secondary);
}
.media-mentions {
  text-align: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-light);
}
.media-mentions h3 {
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}
.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.media-logo {
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.media-logo:hover {
  background: var(--brand-primary);
  color: #fff;
}
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--surface);
}
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}
.testimonial {
  display: none;
  text-align: center;
}
.testimonial.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-content {
  background: #fff;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.testimonial-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  rotate: 45deg;
}
.rating {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  color: #ffb400;
  font-size: 1.25rem;
}
.testimonial blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 var(--space-xl);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info {
  text-align: left;
}
.author-info strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.author-info span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.verified {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--success);
  font-size: 0.75rem;
  margin-top: var(--space-xs);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}
.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.testimonial-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background: var(--brand-primary);
}
.gallery {
  padding: var(--space-3xl) 0;
}
@media (min-width: 1440px) {
  .gallery {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .gallery {
    padding: 6rem 0;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
}
.gallery-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay i {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  animation: zoomPulse 1.5s ease-in-out infinite;
}
.gallery-overlay span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes zoomPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.team {
  padding: var(--space-3xl) 0;
  background: #fff;
}
@media (min-width: 1440px) {
  .team {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .team {
    padding: 6rem 0;
  }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.team-member {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition-normal);
}
.team-member:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.member-photo {
  position: relative;
  margin-bottom: var(--space-lg);
}
.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* object-fit: cover; */
  object-fit: fill;
  margin: 0 auto;
  border: 4px solid #0b61a4;
  box-shadow: var(--shadow-md);
  display: block;
}
.member-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.member-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.member-social a:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
}
.member-info h4 {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.member-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .member-photo img {
    width: 120px;
    height: 120px;
  }
  .member-info h4 {
    font-size: 1rem;
  }
  .member-info p {
    font-size: 0.85rem;
  }
}
@media (min-width: 1440px) {
  .member-photo img {
    width: 200px;
    height: 200px;
  }
  .member-info h4 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
  }
  .member-info p {
    font-size: 1.05rem;
  }
}
@media (min-width: 1920px) {
  .member-photo img {
    width: 220px;
    height: 220px;
  }
  .member-info h4 {
    font-size: 1.6rem;
  }
  .member-info p {
    font-size: 1.15rem;
  }
}
.member-title {
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--brand-primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.contact-btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--surface);
}
@media (min-width: 1440px) {
  .contact-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .contact-section {
    padding: 6rem 0;
  }
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.contact-card {
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: #fff;
  font-size: 1.5rem;
}
.contact-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.contact-card p {
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}
.contact-card a {
  color: var(--brand-primary);
  font-weight: 600;
}
.contact-hours {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.social-links h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.social-icons {
  display: flex;
  justify-content: left;
  gap: var(--space-md);
}
.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.social-icons a:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
}
.contact-form-container {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-tabs {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  flex: 1;
  padding: var(--space-md);
  background: 0 0;
  border: none;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
  min-width: fit-content;
}
@media (max-width: 600px) {
  .tab-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
  }
}
.tab-btn.active {
  color: var(--brand-primary);
  background: #fff;
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-primary);
}
.tab-content {
  display: none;
  padding: var(--space-xl);
}
.tab-content.active {
  display: block;
}
.contact-form .form-row {
  margin-bottom: var(--space-lg);
}
.contact-form .form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .contact-form .form-row.two-col {
    grid-template-columns: 1fr;
  }
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  color: var(--text-primary);
  background-color: #fff;
}
@media (min-width: 1024px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
  }
}
@media (min-width: 1440px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
  }
  .contact-form textarea {
    min-height: 140px;
  }
}
@media (min-width: 1920px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 1.1rem 1.3rem;
    font-size: 1.15rem;
  }
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
.contact-form select {
  color: var(--text-primary);
}
.contact-form select option {
  color: var(--text-primary);
  background-color: #fff;
}
@media (max-width: 600px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
    padding: 12px 10px;
    -webkit-appearance: none;
    appearance: none;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: var(--text-secondary);
  }
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  p {
    line-height: 1.6;
    letter-spacing: 0.3px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    letter-spacing: 0.5px;
    word-break: break-word;
  }
}
.contact-form .phone-input select {
  width: auto;
}
.contact-form .phone-input input {
  flex: 1;
}
@media (max-width: 768px) {
  .contact-section {
    padding: var(--space-2xl) 0;
  }
  .contact-form-container {
    margin: 0 -1rem;
    border-radius: 0;
  }
  .tab-content {
    padding: var(--space-lg);
  }
}
@media (max-width: 600px) {
  .contact-card {
    padding: var(--space-md);
  }
  .social-icons {
    justify-content: left;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    padding: var(--space-md) var(--space-sm);
  }
  .contact-form textarea {
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: var(--space-xl) 0;
  }
  .contact-form-container {
    margin: 0;
    border-radius: var(--radius-lg);
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
  }
  .tab-content {
    padding: var(--space-md);
  }
  .contact-form .form-row {
    margin-bottom: var(--space-md);
  }
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(11, 97, 164, 0.1);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.location-section {
  padding: var(--space-3xl) 0;
  background: #fff;
}
@media (min-width: 1440px) {
  .location-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1920px) {
  .location-section {
    padding: 6rem 0;
  }
}
.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}
@media (max-width: 768px) {
  .location-section {
    padding: var(--space-2xl) 0;
  }
  .location-content {
    gap: var(--space-xl);
  }
}
.office-card {
  background: var(--surface);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
}
@media (max-width: 480px) {
  .office-card {
    padding: var(--space-lg);
  }
}
.office-card h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--brand-primary);
  margin-bottom: var(--space-md);
}
.office-details p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}
.office-amenities {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.amenity {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.875rem;
}
.amenity i {
  color: var(--brand-primary);
}
.directions h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--brand-primary);
  margin-bottom: var(--space-md);
}
.directions ul {
  list-style: none;
  padding: 0;
}
.directions li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.directions li:last-child {
  border-bottom: none;
}
.map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.map-overlay {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}
.map-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--brand-primary);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}
.map-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    border-radius: var(--radius-lg);
  }
}
.modal-small {
  max-width: 500px;
}
@media (max-width: 480px) {
  .modal-small {
    max-width: 100%;
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}
.modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}
.modal-close {
  color: var(--text-muted);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}
.modal-close:hover {
  color: var(--text-primary);
}
.modal-body {
  padding: var(--space-xl);
}
#lightbox-modal .modal-content {
  background: 0 0;
  border: none;
  padding: 0;
  animation: lightboxZoomIn 0.4s ease-out;
}
@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
#lightbox-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 2.5rem;
  z-index: 10;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
#lightbox-modal .modal-close:hover {
  transform: scale(1.15);
}
.site-footer {
  background: var(--text-primary);
  color: #fff;
  padding: var(--space-3xl) 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: var(--space-lg);
}
.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.footer-social {
  display: flex;
  gap: var(--space-md);
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: var(--space-sm);
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}
.footer-section ul li a:hover {
  color: #fff;
  padding-left: var(--space-xs);
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}
.contact-info a {
  color: #fff;
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-toast-container {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.site-toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 90vw;
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}
.site-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.site-toast.success {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
.site-toast.error {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:active,
.skip-link:focus {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  width: auto;
  height: auto;
  padding: 8px 14px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 6px;
  z-index: 20000;
  box-shadow: var(--shadow-lg);
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(24, 119, 242, 0.18);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(11, 97, 164, 0.08);
}
@supports (selector(:focus-visible)) {
  a:focus:not(:focus-visible),
  button:focus:not(:focus-visible),
  input:focus:not(:focus-visible),
  select:focus:not(:focus-visible),
  textarea:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.footer-certifications {
  display: flex;
  gap: var(--space-md);
}
.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  .contact-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .newsletter-content {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-normal);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: -1;
  }
  .nav-links.open::before {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
  }
  .cta-btn {
    margin-top: var(--space-md);
    width: 100%;
    justify-content: center;
  }
  .hero {
    padding: calc(60px + var(--space-2xl)) 0 var(--space-2xl);
  }
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .project-filters {
    flex-wrap: wrap;
  }
  .project-details {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .project-actions {
    flex-direction: column;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .media-logos {
    flex-direction: column;
    gap: var(--space-md);
  }
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal-content {
    width: 95%;
    margin: 2% auto;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .quick-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    min-width: auto;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float a,
  .whatsapp-float button {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .whatsapp-tooltip {
    animation: none;
  }
  @keyframes tooltipPulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.08);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0.8;
    }
  }
}
@keyframes tooltipPulse {
  0%,
  100% {
    opacity: 0;
    transform: translateY(5px);
  }
  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  line-clamp: none;
}
.features-slider .features-grid {
  display: flex;
  gap: var(--space-md);
  transition: transform 400ms ease;
  will-change: transform;
}
.feature-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  width: 100%;
  padding: 0 60px;
}
.feature-slide .feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 540px;
}
.feature {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 12px 32px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(11, 97, 164, 0.15) 0%,
    rgba(11, 97, 164, 0.08) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(11, 97, 164, 0.1);
}
.feature img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  margin: 0;
  padding: 0;
}
.feature h3,
.feature h4 {
  margin: var(--space-md) var(--space-lg) var(--space-xs) var(--space-lg);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}
.feature p {
  flex-grow: 1;
  margin: 0 var(--space-lg) var(--space-md) var(--space-lg);
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.features-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 5;
}
.features-nav:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.features-nav.prev {
  left: var(--space-sm);
}
.features-nav.next {
  right: var(--space-sm);
}
@media (max-width: 768px) {
  .features-nav {
    width: 40px;
    height: 40px;
  }
}
.features-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 0;
}
.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: var(--transition-fast);
}
.feature-dot.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  width: 26px;
  border-radius: 999px;
}
.gallery-slide img {
  object-fit: contain;
  background: #000;
  cursor: pointer;
  pointer-events: auto;
}
.image-lightbox {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
  pointer-events: none;
}
.image-lightbox.active {
  display: flex !important;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
/* Added overrides: make feature slider images fill card width and cards shrink to fit */
.features-slider .feature-slide {
  height: auto !important;
}
.features-slider .feature-slide .feature {
  height: auto !important;
}
.features-slider .feature-slide .feature picture,
.features-slider .feature-slide .feature img {
  max-height: 220px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.features-slider .feature-slide .feature p,
.features-slider .feature-slide .feature .feature-body {
  flex: 1 1 auto;
  display: block;
  overflow: visible;
  line-clamp: none;
}
.features-slider .feature-slide .feature img {
  object-fit: cover;
}
/* Arrow alignment override: position right arrow relative to centered card */
.features-nav.prev {
  left: -64px;
}
.features-nav.next {
  right: auto;
  left: calc(50% + 270px + 24px);
}
@media (max-width: 768px) {
  .features-nav.prev {
    left: var(--space-sm);
  }
  .features-nav.next {
    right: var(--space-sm);
    left: auto;
  }
}

/* Gallery-style behavior for features: prevent track translate, show only active slide and center it */
@media (min-width: 769px) {
  .features-track {
    transform: none !important;
  }
  .feature-slide {
    display: none;
    position: relative;
  }
  .feature-slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .feature-slide.active .feature {
    margin: 0 auto;
  }
}
.features-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin: 12px 0 0;
  position: relative;
  z-index: 6;
}
.feature-dot {
  width: 10px;
  height: 10px;
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: width 0.28s ease, background 0.2s ease, border-color 0.2s ease;
  padding: 0;
}
.feature-dot.active {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  width: 26px;
  border-radius: 10px;
}

@media (min-width: 769px) {
  .features-slider {
    overflow: hidden;
  }
  .features-nav.prev {
    left: calc(50% - 270px - 12px) !important;
  }
  .features-nav.next {
    right: auto !important;
    left: calc(50% + 270px + 12px) !important;
  }
  .features-dots {
    margin-top: 1rem;
    position: relative;
    z-index: 6;
  }
}

/* Strong override to ensure arrows sit 12px from centered card */
@media (min-width: 769px) {
  .features-nav.prev {
    left: calc(50% - 270px - 12px) !important;
  }
  .features-nav.next {
    right: auto !important;
    left: calc(50% + 270px + 12px) !important;
  }
}

/* Toast: loading spinner (used by assets/js/main.js) */
.site-toast .toast-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-toast .toast-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: toastSpin 0.8s linear infinite;
  flex: 0 0 auto;
}
@keyframes toastSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Button icon spacing (robust) */
.btn {
  gap: 0.5rem;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn i,
.cta i,
.card-btn i,
.cta-btn i {
  margin-right: 0 !important;
}
