/* ── TYPOGRAPHY ── */
.display { font-family: 'Playfair Display', serif; }
h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -0.02em; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media(max-width:768px){ .container{ padding:0 20px; } }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--navy);
  padding: 10px 0;
  text-align: center;
}
.ann-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ann-bar strong { color: #F5C842; font-weight: 600; }
.ann-bar a { color: #60A5FA; text-decoration: none; border-bottom: 1px solid rgba(96,165,250,0.4); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.brand-name span { color: var(--blue); }
.brand-tag {
  font-size: 10.5px; font-weight: 600; color: var(--green);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: all 0.18s; white-space: nowrap;
}
.nav-links a:hover { background: var(--blue-pale); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-outline {
  padding: 9px 20px; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600;
  color: var(--gray-700); background: transparent; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.18s; font-family: inherit; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-primary {
  padding: 10px 24px; background: var(--blue); border: none;
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 700;
  color: white; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; transition: all 0.22s; font-family: inherit; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(27,79,216,0.28);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,79,216,0.35); }

/* ── DROP DOWN ── */
.dropdown{
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown > a{
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .18s;
    white-space: nowrap;
}

.dropdown > a:hover{
    background: var(--blue-pale);
    color: var(--blue);
}

.dropdown-menu{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
}

.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a{
    display: block;
    padding: 12px 18px;
    color: var(--gray-700);
}

.dropdown-menu a:hover{
    background: var(--blue-pale);
    color: var(--blue);
}

/* ── MOBILE NAV (hamburger + dropdown) ── */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: var(--off-white);
  align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy); }
.mobile-dropdown {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  transition: max-height 0.32s ease;
}
.mobile-dropdown.open { max-height: 520px; }
.mobile-dropdown-inner { padding: 10px 20px 18px; display: flex; flex-direction: column; gap: 4px; }
.mobile-dropdown-inner a {
  font-size: 15px; font-weight: 600; color: var(--gray-700);
  text-decoration: none; padding: 13px 14px; border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-dropdown-inner a:hover, .mobile-dropdown-inner a:active { background: var(--blue-pale); color: var(--blue); }
.mobile-dropdown-inner a svg { width: 15px; height: 15px; color: var(--gray-300); }
.mobile-dropdown-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.mobile-dropdown-actions .btn-outline, .mobile-dropdown-actions .btn-primary { justify-content: center; width: 100%; padding: 13px; font-size: 14.5px; }


/* ── FOOTER ── */
footer { background: #040B16; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.85; max-width: 280px; margin-top: 18px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.3); }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: #60A5FA; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--blue-light); flex-shrink: 0; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.22); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.35); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.18); }

/* ── FLOAT ── */
.float-btns { position: fixed; bottom: 26px; right: 22px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; transition: all 0.22s; white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.float-wa { background: #25D366; color: white; }
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.float-call { background: var(--blue); color: white; }
.float-call:hover { transform: translateY(-2px); background: var(--blue-light); }