/* ═══════════════════════════════════════════════════════════
   Varchasva — Premium Medical Congress Website
   styles.css
═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --navy: #0B1F3A;
  --teal: #0B1C2C;
  --teal-light: #12a5a7;
  --teal-dark: #0a6668;
  --gold: #C7A24A;
  --gold-light: #d4b36a;
  --bg: #F8FAFC;
  --bg-alt: #EFF4F8;
  --white: #ffffff;
  --text-primary: #0B1F3A;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border: #E2E8F0;
  --border-light: #F0F4F8;

  --shadow-sm: 0 1px 3px rgba(11,31,58,0.08), 0 1px 2px rgba(11,31,58,0.05);
  --shadow-md: 0 4px 16px rgba(11,31,58,0.10), 0 2px 6px rgba(11,31,58,0.06);
  --shadow-lg: 0 10px 40px rgba(11,31,58,0.12), 0 4px 12px rgba(11,31,58,0.07);
  --shadow-xl: 0 20px 60px rgba(11,31,58,0.14), 0 8px 20px rgba(11,31,58,0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-head: 'Inter', -apple-system, sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── Section Utilities ─── */
.section-pad { padding: 96px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    background: #a47d38;
    border: 1px solid rgba(15, 139, 141, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.tag-light {
    color: #ffffff;
    background: #a47d38;
    border-color: #ffffff;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-heading.light { color: var(--white); }
.text-accent { color: var(--teal); }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--teal);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(15,139,141,0.35); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: var(--transition);
}

.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11,31,58,0.2); }

.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */

.navbar{
position:fixed;
top:0;
left:0;
right:0;

z-index:1000;

background:#0B1C2C;

transition:
background var(--transition),
box-shadow var(--transition);

box-shadow:0 8px 24px rgba(0,0,0,.12);
}

/* Sticky Header */
.navbar.scrolled{
background:#0B1C2C;

backdrop-filter:none;

-webkit-backdrop-filter:none;

box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.nav-container{
max-width:1200px;

margin:0 auto;

padding:0 24px;

height:82px;

display:flex;

align-items:center;

gap:40px;
}

/* Logo */

.nav-logo{
display:flex;

align-items:center;

gap:14px;

flex-shrink:0;
}

.logo-icon{
flex-shrink:0;
}

.logo-text{
display:flex;

flex-direction:column;

line-height:1;
}

.logo-name{
font-family:'Playfair Display',serif;

font-size:1.65rem;

font-weight:600;

letter-spacing:2px;

color:#A47D38;
}

.logo-sub{
font-family:'Inter',sans-serif;

font-size:.62rem;

letter-spacing:.24em;

text-transform:uppercase;

color:#ffffff;
}

/* Navigation */

.nav-links{

display:flex;

align-items:center;

gap:6px;

margin-left:auto;
}

.nav-link{

font-family:var(--font-head);

font-size:.92rem;

font-weight:500;

color:#ffffff;

padding:10px 14px;

border-radius:10px;

transition:var(--transition);

white-space:nowrap;
}

.nav-link:hover,
.nav-link.active{

color:#A47D38;

background:rgba(164,125,56,.10);
}

/* CTA */

.nav-cta{

display:inline-flex;

align-items:center;

padding:12px 24px;

background:#A47D38;

color:#ffffff;

font-family:var(--font-head);

font-size:.88rem;

font-weight:600;

border-radius:10px;

transition:var(--transition);

white-space:nowrap;
}

.nav-cta:hover{

background:#B88D40;

transform:translateY(-2px);

box-shadow:0 10px 24px rgba(164,125,56,.35);
}

/* Hamburger */

.hamburger{

display:none;

flex-direction:column;

gap:5px;

padding:8px;

margin-left:auto;
}

.hamburger span{

display:block;

width:24px;

height:2px;

background:#ffffff;

border-radius:2px;

transition:var(--transition);
}

.hamburger.open span:nth-child(1){
transform:rotate(45deg) translate(4px,4px);
}

.hamburger.open span:nth-child(2){
opacity:0;
}

.hamburger.open span:nth-child(3){
transform:rotate(-45deg) translate(4px,-4px);
}

/* Mobile */

.mobile-menu{

display:none;

flex-direction:column;

gap:6px;

padding:18px 24px;

background:#0B1C2C;

border-top:1px solid rgba(255,255,255,.08);
}

.mobile-menu.open{
display:flex;
}

.mobile-link{

font-family:var(--font-head);

font-size:1rem;

font-weight:500;

color:#ffffff;

padding:12px 16px;

border-radius:10px;

transition:var(--transition);
}

.mobile-link:hover{

color:#A47D38;

background:rgba(164,125,56,.08);
}

.mobile-cta{

margin-top:10px;

justify-content:center;
}
/* ═══════════════════════════════
   MOBILE NAVBAR
══════════════════════════════ */

@media (max-width: 992px){

.nav-container{

height:72px;

padding:0 18px;

gap:16px;
}

/* Logo */

.brand-logo{
width:34px;
height:34px;
}

.logo-name{

font-size:1.35rem;

letter-spacing:1px;
}

/* Hide desktop */

.nav-links,
.nav-cta{
display:none;
}

/* Show hamburger */

.hamburger{
display:flex;
}

/* Mobile Menu */

.mobile-menu{

position:absolute;

top:72px;

left:0;

right:0;

background:#0B1C2C;

padding:18px;

display:none;

flex-direction:column;

gap:10px;

box-shadow:
0 20px 40px rgba(0,0,0,.25);
}

.mobile-menu.open{
display:flex;
}

/* Mobile Links */

.mobile-link{

display:block;

padding:14px 18px;

font-size:1rem;

font-weight:500;

color:#FFFFFF;

border-radius:10px;
}

.mobile-link:hover{

background:rgba(164,125,56,.12);

color:#A47D38;
}

/* CTA */

.mobile-cta{

display:flex;

justify-content:center;

width:100%;

margin-top:8px;

background:#A47D38;

color:#fff;

padding:14px;

border-radius:10px;
}

.mobile-cta:hover{

background:#B88D40;
}

}

/* Small Phones */

@media (max-width:480px){

.nav-container{

height:66px;

padding:0 16px;
}

.brand-logo{
width:30px;
height:30px;
}

.logo-name{

font-size:1.1rem;
}

.mobile-menu{

top:66px;
}

.mobile-link{

padding:12px 14px;

font-size:.95rem;
}

.mobile-cta{

padding:12px;
}

}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #F8FAFC 0%, #EEF4F9 55%, #E4EDF5 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(15,139,141,0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(11,31,58,0.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(199,162,74,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,139,141,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,139,141,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15,139,141,0.09);
  border: 1px solid rgba(15,139,141,0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--teal);
  position: relative;
}

.headline-accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.trust-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(11,31,58,0.08);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 520/420;
  background: var(--navy);
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

/* Float Cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 190px;
}

.float-card-1 { top: -16px; left: -24px; animation: float1 4s ease-in-out infinite; }
.float-card-2 { bottom: -16px; right: -24px; animation: float2 4s ease-in-out infinite 2s; }

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.float-icon {
  width: 40px;
  height: 40px;
  background: rgba(15,139,141,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon-gold { background: rgba(199,162,74,0.1); }
.float-title { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.float-sub { font-family: var(--font-head); font-size: 0.72rem; color: var(--text-muted); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(11,31,58,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: rgba(15,139,141,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.stat-card-accent { background: var(--teal); border-color: var(--teal); }
.stat-card-dark { background: var(--navy); border-color: var(--navy); }
.stat-card-accent .stat-number, .stat-card-accent .stat-label, .stat-card-accent .stat-desc,
.stat-card-dark .stat-number, .stat-card-dark .stat-label, .stat-card-dark .stat-desc { color: var(--white) !important; }
.stat-card-accent .stat-desc, .stat-card-dark .stat-desc { opacity: 0.75; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.stat-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(15,139,141,0.25); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
}

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

.service-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.service-arrow {
  color: var(--teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(15,139,141,0.2); }

.why-icon-wrap { display: flex; justify-content: center; margin-bottom: 22px; }
.why-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.why-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.75; }

/* ════════════════════════════════════════════
   CONGRESSES
════════════════════════════════════════════ */
.congress-track {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
}

.congress-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.congress-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

.congress-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.congress-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.congress-img-1 { background: linear-gradient(135deg, #1a3a5c 0%, #0B1F3A 40%, #0B1C2C 100%); }
.congress-img-2 { background: linear-gradient(135deg, #2d1b4e 0%, #1a0f30 40%, #8B440F 100%); }
.congress-img-3 { background: linear-gradient(135deg, #0a3d30 0%, #0B2F1A 40%, #2d7a4e 100%); }
.congress-img-4 { background: linear-gradient(135deg, #3d1a0a 0%, #2F1B0B 40%, #8B6D0F 100%); }

/* Overlay & icons on congress images */
.congress-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.congress-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.congress-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.congress-specialty {
  display: inline-block;
  background: rgba(199,162,74,0.9);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.congress-body { padding: 22px; }

.congress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.congress-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-head);
}

.congress-date { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-head); font-weight: 500; }
.congress-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.congress-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }

.congress-cta {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.congress-cta:hover { color: var(--navy); gap: 10px; }

.congress-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.congress-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.congress-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.congress-dots { display: flex; gap: 8px; }
.congress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.congress-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ════════════════════════════════════════════
   PUBLICATIONS TIMELINE
════════════════════════════════════════════ */
.pub-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.pub-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 30px; }

.pub-highlights {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pub-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
}

.ph-num { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--teal); }
.ph-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; text-align: center; }

/* Timeline */
.pub-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15,139,141,0.15);
  position: relative;
  z-index: 1;
}

.timeline-connector {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(15,139,141,0.1));
}

.timeline-step {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ════════════════════════════════════════════
   IMPACT
════════════════════════════════════════════ */
.impact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
}

.impact-item { padding: 20px 48px; }

.impact-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.impact-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  max-width: 140px;
  margin: 0 auto;
  line-height: 1.4;
}

.impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.test-quote-icon {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(15,139,141,0.1);
  pointer-events: none;
  font-style: normal;
}

.test-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 28px; font-style: italic; }

.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.test-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.test-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; line-height: 1.4; }

/* ════════════════════════════════════════════
   PARTNERS
════════════════════════════════════════════ */
.partner-slider-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.partner-slider {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.partner-slider:hover { animation-play-state: paused; }

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo { flex-shrink: 0; opacity: 0.6; transition: var(--transition); }
.partner-logo:hover { opacity: 1; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
}

.req { color: var(--teal); }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(15,139,141,0.1); }
.form-input.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.78rem; color: #e53e3e; font-family: var(--font-head); min-height: 18px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,139,141,0.08);
  border: 1px solid rgba(15,139,141,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

/* Contact Info */
.contact-office {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.contact-office:last-of-type { border-bottom: none; }

.office-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,139,141,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.office-detail { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; }

.office-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.office-link:hover { color: var(--navy); }
.whatsapp-link { color: #25D366; }
.whatsapp-link:hover { color: #1da350; }

.contact-certs { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 20px; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { margin-bottom: 18px; display: inline-flex; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-address { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 14px; }

.footer-accred { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.accred-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(199,162,74,0.1);
  border: 1px solid rgba(199,162,74,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal span { color: rgba(255,255,255,0.2); }
.footer-legal-link { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15,139,141,0.4);
  transition: var(--transition);
  z-index: 800;
}

.back-to-top:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,31,58,0.3); }

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding-top: 100px; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .impact-grid { flex-wrap: wrap; justify-content: center; }
  .impact-divider { display: none; }

  .congress-cards {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }

  .back-to-top { bottom: 20px; right: 20px; }
  .float-card-1, .float-card-2 { display: none; }
}

/* ─── Utility ─── */
*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(15,139,141,0.2); color: var(--navy); }

/* ════════════════════════════════════════════
   ADDITIONAL PREMIUM POLISH
════════════════════════════════════════════ */

/* ─── Nav link underline animation ─── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ─── Hero section: subtle entrance ─── */
.hero-text { animation: heroEntrance 0.9s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-visual { animation: heroVisual 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s both; }
@keyframes heroVisual {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Section tag hover ─── */
.section-tag {
  transition: var(--transition);
  cursor: default;
}

/* ─── Service card icon hover ─── */
.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
  transition: var(--transition);
}

/* ─── Stat card number color on dark cards ─── */
.stat-card-accent .stat-number { color: rgba(255,255,255,0.9) !important; }

/* ─── Why card icon background on hover ─── */
.why-card:hover .why-icon-wrap svg circle:first-child {
  fill-opacity: 0.18;
}

/* ─── Testimonial card accent border on hover ─── */
.testimonial-card:hover {
  border-color: rgba(15,139,141,0.25);
}

/* ─── Timeline icon pulse on hover ─── */
.timeline-item:hover .timeline-icon {
  box-shadow: 0 4px 20px rgba(15,139,141,0.3);
  transform: scale(1.06);
  transition: var(--transition);
}

/* ─── Form input filled state ─── */
.form-input:not(:placeholder-shown):not(.error) {
  border-color: rgba(15,139,141,0.4);
  background: white;
}

/* ─── Submit button loading spinner ─── */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Congress card inner SVG decorations ─── */
.congress-img svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}

/* ─── Impact section background texture ─── */
.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(15,139,141,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(199,162,74,0.05) 0%, transparent 40%),
    linear-gradient(rgba(15,139,141,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,139,141,0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.bg-dark .container { position: relative; z-index: 1; }

/* ─── Publication highlights row ─── */
.pub-highlights {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pub-highlight {
  flex: 1;
  min-width: 80px;
}

/* ─── Contact info reveal animation ─── */
.contact-office {
  transition: var(--transition);
}
.contact-office:hover {
  background: rgba(15,139,141,0.03);
  border-radius: var(--radius-md);
  padding-left: 8px;
  margin-left: -8px;
}

/* ─── Footer link hover left-shift ─── */
.footer-link {
  display: inline-block;
}
.footer-link:hover {
  padding-left: 4px;
}

/* ─── Footer brand glow ─── */
.footer-logo:hover .logo-icon rect {
  fill: var(--teal);
  transition: fill 0.3s;
}

/* ─── Back-to-top accessible focus ─── */
.back-to-top:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Congress card image inner illustration ─── */
.congress-img-inner-svg {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  opacity: 0.15;
}

/* ─── Scroll cue fade out on scroll ─── */
.hero-scroll-cue {
  transition: opacity 0.4s ease;
}
.hero-scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ─── Section heading animated underline ─── */
.section-heading { position: relative; }

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(15,139,141,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ─── Print styles ─── */
@media print {
  .navbar, .hero-scroll-cue, .back-to-top, .hamburger { display: none; }
  .hero { min-height: auto; padding-top: 24px; }
  * { box-shadow: none !important; }
}

/* ─── High contrast / dark mode hint ─── */
@media (prefers-color-scheme: dark) {
  /* Intentionally light — medical professional audience expects clinical white */
}

/* ─── Touch device optimisations ─── */
@media (hover: none) {
  .service-card:hover,
  .why-card:hover,
  .congress-card:hover,
  .stat-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
  .float-card-1, .float-card-2 {
    animation-play-state: paused;
  }
}

/* ─── Very large screens ─── */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .hero-headline { font-size: 3.8rem; }
  .section-heading { font-size: 2.8rem; }
}

/* ─── Landscape mobile ─── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 90px 24px 48px; }
}
/* NAV LOGO */

.nav-logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-icon{
    display:flex;
    align-items:center;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-name{
    font-family:'Playfair Display', serif;
    font-size:28px;
    font-weight:600;
    letter-spacing:2px;
    color:#C9A14A;
}

.logo-sub{
    font-family:'Inter', sans-serif;
    font-size:11px;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#0B1C2C;
    margin-top:4px;
}

.navbar.scrolled .logo-sub{
    color:#C9A14A;
}

@media(max-width:768px){

.logo-icon svg{
    width:34px;
    height:34px;
}

.logo-name{
    font-size:22px;
}

.logo-sub{
    font-size:10px;
    letter-spacing:4px;
}

}
:root {

/* BRAND COLORS */
--navy: #0B1C2C;
--teal: #A47D38;
--teal-light: #B58B43;
--teal-dark: #8B672B;

--gold: #A47D38;
--gold-light: #C39B57;

/* BACKGROUNDS */
--bg: #F8FAFC;
--bg-alt: #F4F6F8;

--white: #ffffff;

/* TEXT */
--text-primary: #0B1C2C;
--text-secondary: #516072;
--text-muted: #7A8796;

/* BORDERS */
--border: #E3E7EC;
--border-light: #F3F5F8;

/* SHADOWS */
--shadow-sm: 0 1px 3px rgba(20,38,62,.08), 0 1px 2px rgba(20,38,62,.05);
--shadow-md: 0 4px 16px rgba(20,38,62,.10), 0 2px 6px rgba(20,38,62,.06);
--shadow-lg: 0 10px 40px rgba(20,38,62,.12), 0 4px 12px rgba(20,38,62,.07);
--shadow-xl: 0 20px 60px rgba(20,38,62,.14), 0 8px 20px rgba(20,38,62,.08);

/* RADIUS */
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 20px;
--radius-xl: 28px;

/* FONTS */
--font-head: 'Playfair Display', serif;
--font-body: 'Inter', sans-serif;

--transition: .3s cubic-bezier(.4,0,.2,1);
--transition-slow: .5s cubic-bezier(.4,0,.2,1);

}
/* LOGO */

.nav-logo{
display:flex;
align-items:center;
gap:14px;
}

.brand-logo{
width:46px;
height:46px;
object-fit:contain;
display:block;
}

.logo-text{
display:flex;
flex-direction:column;
line-height:1;
}

.logo-name{
font-family:'Playfair Display',serif;
font-size:28px;
font-weight:600;
letter-spacing:2px;

color:#A47D38;
}

.logo-sub{
font-family:'Inter',sans-serif;

font-size:11px;

letter-spacing:6px;

color:#0B1C2C;

margin-top:4px;
}

.navbar.scrolled .logo-sub{
color:#A47D38;
}

@media(max-width:768px){

.brand-logo{
width:38px;
height:38px;
}

.logo-name{
font-size:22px;
}

.logo-sub{
font-size:10px;
letter-spacing:4px;
}

}