/* ─── Variables ──────────────────────────────────────── */
:root {
  --brand:      #022B60;
  --brand-dark: #041e40;
  --brand-mid:  #063057;
  --gold:       #FF9202;
  --gold-dark:  #e07d00;
  --bg:         #f7f6f4;
  --white:      #ffffff;
  --text:       #1a2332;
  --muted:      #6b7280;
  --radius:     16px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Figtree', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

/* ─── Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ─── Shared section elements ────────────────────────── */
.sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.eyebrow {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#nav.stuck {
  background: rgba(2, 43, 96, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-cta {
  padding: 11px 26px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 146, 2, 0.4);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-mid) 55%, var(--brand-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.o1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255, 146, 2, 0.2), transparent 70%);
  top: -200px; right: -120px;
}
.o2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.13), transparent 70%);
  bottom: -150px; left: -80px;
  animation-delay: -6s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(36px, -36px) scale(1.07); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 28px;
  background: rgba(255, 146, 2, 0.1);
  border: 1px solid rgba(255, 146, 2, 0.35);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.7); }
}

.hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

/* Armenian slogan block */
.hero-slogan {
  position: relative;
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 146, 2, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  text-align: left;
}

.hero-slogan p {
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.78;
  font-weight: 400;
  font-style: italic;
}

/* Inline quote marks */
.slogan-open,
.slogan-close {
  font-style: normal;
  font-weight: 800;
  font-size: 1.1em;
  color: var(--gold);
  line-height: 1;
}

/* Bold first phrase */
.slogan-bold {
  font-weight: 700;
  font-style: italic;
}

/* Bold + gold brand name */
.slogan-brand {
  font-weight: 800;
  font-style: normal;
  color: var(--gold);
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 146, 2, 0.42);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   PROPERTY CATEGORIES
═══════════════════════════════════════ */
.categories {
  background: var(--white);
  padding: 88px 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.045);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(2, 43, 96, 0.12);
  border-color: rgba(255, 146, 2, 0.25);
}

.cat-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(2, 43, 96, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-icon svg {
  width: 24px; height: 24px;
  stroke: var(--brand);
}

.cat-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 5px;
}

.cat-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--bg);
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-copy .sec-title {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin-bottom: 20px;
}

.about-copy p {
  color: #4b5563;
  line-height: 1.72;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 17px;
  background: var(--white);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-list li:hover {
  border-color: rgba(255, 146, 2, 0.25);
  transform: translateX(4px);
}

.tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tick svg {
  width: 12px; height: 12px;
}

/* ═══════════════════════════════════════
   CONTACTS
═══════════════════════════════════════ */
.contact {
  background: var(--brand);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255, 146, 2, 0.09), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(74, 158, 255, 0.07), transparent 50%);
}

.contact .sec-head {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: rgba(255, 146, 2, 0.75);
}

.contact .sec-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 146, 2, 0.35);
  transform: translateY(-3px);
}

.cc-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-icon svg {
  width: 22px; height: 22px;
}

.cc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.cc-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.cc-value-2 {
  font-size: 0.85em;
  opacity: 0.7;
}

/* Contact icon colour themes */
.ic-phone { background: rgba(52,  199, 89,  0.18); }
.ic-wp    { background: rgba(37,  211, 102, 0.18); }
.ic-tt    { background: linear-gradient(135deg, rgba(254,44,85,0.22), rgba(105,201,208,0.22)); }
.ic-tg    { background: rgba(42,  171, 238, 0.18); }
.ic-ig    { background: rgba(225, 48,  108, 0.18); }
.ic-fb    { background: rgba(24,  119, 242, 0.18); }

.ic-phone svg { stroke: #34c759; }
.ic-wp    svg { stroke: #25d366; }
.ic-tt    svg { stroke: #ffffff; }
.ic-tg    svg { stroke: #2aabee; }
.ic-ig    svg { stroke: #e1306c; }
.ic-fb    svg { stroke: #1877f2; }

.contact-note {
  text-align: center;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--brand-dark);
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.foot-logo img {
  height: 32px;
  margin-bottom: 12px;
}

.foot-tag {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}

.foot-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.foot-links a:hover {
  color: var(--gold);
}

.foot-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container         { padding: 0 20px; }
  .about-grid        { grid-template-columns: 1fr; gap: 44px; }
  .cat-grid          { grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .contact-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-slogan       { padding: 22px; border-left-width: 3px; }
  .hero-slogan p     { font-size: 0.95rem; }
  .foot-inner        { flex-direction: column; gap: 24px; }
  .foot-links        { gap: 18px; }
}

@media (max-width: 480px) {
  .cat-grid          { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .btn-contact       { display: none;}
}
