/* =====================================================
   BAŞKIR HUKUK & DANIŞMANLIK — Premium Stylesheet v2
   ===================================================== */

/* ---- Custom Selection ---- */
::selection {
  background: rgba(200, 169, 110, 0.25);
  color: #0f1923;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #07101a; }
::-webkit-scrollbar-thumb { background: #c8a96e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #dfc090; }

/* ---- Variables ---- */
:root {
  --primary:    #080f1c;
  --p2:         #0d1829;
  --p3:         #132035;
  --p4:         #1c2f48;
  --gold:       #c8a96e;
  --gold-2:     #dfc090;
  --gold-3:     #a88849;
  --gold-dim:   rgba(200, 169, 110, 0.12);
  --white:      #ffffff;
  --off-white:  #f7f4ee;
  --light:      #ede9e0;
  --border-l:   rgba(0,0,0,0.08);
  --border-d:   rgba(255,255,255,0.07);
  --text:       #161616;
  --muted:      #737380;
  --sh-gold:    0 8px 32px rgba(200, 169, 110, 0.28);
  --sh-dark:    0 12px 48px rgba(0,0,0,0.22);
  --sh-card:    0 2px 16px rgba(0,0,0,0.06);
  --r:          5px;
  --r-lg:       12px;
  --r-xl:       20px;
  --tr:         all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:      78px;
  --gutter:     40px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---- Type Scale ---- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.1; }
h2 em, h1 em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::before { display: none; }

.section-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.975rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

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

.gold-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
  margin-bottom: 24px;
  border-radius: 2px;
}

.gold-divider.centered { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.4);
}

.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-dark:hover {
  background: var(--p3);
  transform: translateY(-3px);
  box-shadow: var(--sh-dark);
  border-color: rgba(200, 169, 110, 0.3);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 28px;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-submit:hover::after { transform: translateX(100%); }

.btn-submit:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--primary);
  border-bottom: 1px solid rgba(200, 169, 110, 0.14);
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 7px 14px;
  border-radius: var(--r);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: white;
  padding: 8px 18px;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--tr);
  margin-left: 0;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #1db954;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 0;
  flex-shrink: 0;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  align-items: stretch;
}

.hero-portrait {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
}

.hero-portrait picture,
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--nav-h));
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    rgba(8, 15, 28, 0.4) 18%,
    transparent 52%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px var(--gutter) 64px;
  max-width: none;
  text-align: left;
  background: var(--primary);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.98;
  margin-bottom: 14px;
  letter-spacing: -1.4px;
}

.hero-title-line { display: block; }

.hero-title-accent {
  font-style: italic;
  color: var(--gold);
}

.hero-role {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: min(34rem, 100%);
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  max-width: 34rem;
}

.h-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px 0 0;
}

.h-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.h-stat span {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.h-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin-right: 28px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  z-index: 6;
  display: flex;
  color: rgba(255,255,255,0.35);
}

.hero-scroll:hover { color: var(--gold); }

.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.08); }
}

/* =====================================================
   MARQUEE BAND
   ===================================================== */

.marquee-section {
  background: var(--primary);
  border-top: 1px solid rgba(200, 169, 110, 0.18);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 18px;
  transition: color 0.25s ease;
}

.marquee-content span:hover { color: var(--gold); }

.marquee-content .mdot {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.55rem;
  padding: 0 4px;
  letter-spacing: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* pause on hover */
.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

/* =====================================================
   ABOUT
   ===================================================== */

.about {
  padding: 140px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* giant decorative § background */
.about-bg-decor {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 42rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,0,0,0.018);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about .container { position: relative; z-index: 1; }

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

/* --- Image --- */
.about-image { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--p3) 0%, var(--primary) 100%);
  box-shadow: var(--sh-dark);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  position: relative;
  z-index: 1;
}

/* gold border frame */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 14px;
  bottom: 14px;
  border: 1.5px solid rgba(200, 169, 110, 0.3);
  border-radius: var(--r-lg);
  z-index: -1;
  pointer-events: none;
}

/* bottom gradient overlay on image */
.img-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(8,15,28,0.65), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--gold);
  color: var(--primary);
  padding: 20px 24px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--sh-gold);
  min-width: 148px;
  z-index: 3;
}

.badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.badge-text {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.78;
  letter-spacing: 0.3px;
}

.about-tag-line {
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  text-align: center;
}

.about-tag-line span {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--border-l);
  border-radius: 40px;
}

/* --- Content --- */
.about-text {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.about-stats {
  display: flex;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-l);
}

.stat-number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-plus {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}

.stat-text-val {
  font-size: 1.4rem !important;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-edu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.edu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
}

.edu-item i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* =====================================================
   APPROACH
   ===================================================== */

.approach {
  background: var(--primary);
  padding: 72px 0;
  border-top: 1px solid rgba(200, 169, 110, 0.14);
}

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

.approach-item { color: var(--white); }

.approach-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.approach-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.approach-item p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 42ch;
}

/* =====================================================
   SERVICES
   ===================================================== */

.services {
  padding: 140px 0;
  background: #f4f1eb;
  position: relative;
  overflow: hidden;
}

/* subtle dot grid background */
.services-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  padding: 40px 34px 32px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.38s ease,
              border-color 0.38s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* large background card number */
.card-num {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 6.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.38s ease;
}

.service-card:hover .card-num {
  opacity: 0.07;
}

/* top border reveal on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0 0 2px 2px;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.11);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--gold);
  transform: rotate(-4deg) scale(1.05);
}

.service-icon i {
  font-size: 1.25rem;
  color: var(--gold-3);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-3);
  transition: var(--tr);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.service-link i { font-size: 0.65rem; transition: transform 0.22s ease; }

.service-link:hover { color: var(--gold); }
.service-link:hover i { transform: translateX(5px); }

/* =====================================================
   CONTACT
   ===================================================== */

.contact {
  padding: 140px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* decorative ring */
.contact-overlay-decor {
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(200, 169, 110, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.contact-overlay-decor::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(200, 169, 110, 0.04);
  border-radius: 50%;
}

.contact-title { color: var(--white) !important; }
.contact-desc  { color: rgba(255,255,255,0.45) !important; }
.contact .section-eyebrow { color: var(--gold); justify-content: center; }
.contact .section-eyebrow::before { background: var(--gold); display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}

.contact-item:hover .contact-icon {
  background: rgba(200, 169, 110, 0.18);
  border-color: rgba(200, 169, 110, 0.4);
}

.contact-icon i { font-size: 1rem; color: var(--gold); }

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
  color: rgba(255,255,255,0.62);
  font-size: 0.93rem;
}

.contact-item a:hover { color: var(--gold); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(200, 169, 110, 0.06);
  border-left: 2px solid rgba(200, 169, 110, 0.4);
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 30px;
}

.contact-note i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-note p { color: rgba(255,255,255,0.45); font-size: 0.83rem; line-height: 1.65; }
.contact-note strong { color: rgba(255,255,255,0.75); }

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 26px;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--tr);
}

.whatsapp-contact-btn:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.36);
  color: var(--white);
}

.whatsapp-contact-btn i { font-size: 1.15rem; }

/* Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: 48px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-header h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23c8a96e' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option { background: #0d1829; color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 169, 110, 0.55);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #05090f;
  padding: 88px 0 0;
  position: relative;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.32);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 0.88rem;
  transition: var(--tr);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links ul li,
.footer-services ul li { margin-bottom: 9px; }

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255,255,255,0.35);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  transition: var(--tr);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.35);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--gold); }

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

.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 0.77rem; }

/* =====================================================
   WHATSAPP FLOAT & SCROLL TOP
   ===================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: var(--tr);
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--r);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%) translateX(4px);
  box-shadow: var(--sh-dark);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: rgba(8,15,28,0.9);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.inner-page .reveal,
.inner-page .reveal-left,
.inner-page .reveal-right {
  opacity: 1;
  transform: none;
}

/* service card stagger */
.service-card:nth-child(2)  { transition-delay: 0.08s; }
.service-card:nth-child(3)  { transition-delay: 0.16s; }
.service-card:nth-child(4)  { transition-delay: 0.08s; }
.service-card:nth-child(5)  { transition-delay: 0.16s; }
.service-card:nth-child(6)  { transition-delay: 0.24s; }
.service-card:nth-child(7)  { transition-delay: 0.08s; }
.service-card:nth-child(8)  { transition-delay: 0.16s; }
.service-card:nth-child(9)  { transition-delay: 0.08s; }
.service-card:nth-child(10) { transition-delay: 0.16s; }

/* =====================================================
   INNER PAGES — hero, blog, articles
   ===================================================== */

.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 64px) 0 56px;
  text-align: center;
  color: var(--white);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero-lead {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-main {
  background: var(--off-white);
}

.inner-page .about {
  background: var(--off-white);
}

.inner-page .services {
  padding-top: 56px;
}

.inner-page .services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.inner-page .service-card,
.service-card[id] {
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.inner-page .contact {
  padding-top: 56px;
}

.page-cta-note {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
}

.page-cta-note a:not(.btn) {
  color: var(--gold-3);
}

.blog-teaser {
  padding: 120px 0 100px;
  background: var(--white);
}

.blog-list {
  padding: 56px 0 100px;
}

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

.blog-card {
  background: var(--white);
  padding: 28px 26px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-l);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card h2,
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 4px 0 8px;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--primary);
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--gold-3);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.article {
  padding: calc(var(--nav-h) + 40px) 0 90px;
  background: var(--off-white);
}

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold-3);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  color: var(--primary);
  line-height: 1.22;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}

.article-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.article p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: #2c2c32;
  margin-bottom: 1.15em;
}

.article-cta {
  margin: 40px 0 48px;
}

.article-more {
  border-top: 1px solid var(--border-l);
  padding-top: 28px;
}

.article-more h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.article-more ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-more li {
  margin-bottom: 10px;
}

.article-more a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.article-more a:hover {
  color: var(--gold-3);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .approach-grid { gap: 32px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 18px 28px 28px;
    gap: 2px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    margin-left: 0;
    width: 100%;
  }
  .nav-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 12px 10px; font-size: 0.95rem; }
  .nav-cta { margin-left: auto; }
  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 4px;
  }
}

@media (max-width: 960px) {
  :root { --gutter: 24px; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-portrait,
  .hero-portrait picture,
  .hero-portrait img {
    min-height: 42vh;
    height: 42vh;
  }
  .hero-portrait { order: -1; }
  .hero-portrait::after {
    background: linear-gradient(180deg, transparent 50%, var(--primary) 100%);
  }
  .hero-content {
    text-align: center;
    padding: 24px var(--gutter) 56px;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-kicker { letter-spacing: 1.6px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-stats { justify-content: center; }
  .hero-stats { margin-left: auto; margin-right: auto; }
  .h-stat { align-items: center; padding: 0 16px; }
  .h-stat-divider { margin-right: 0; }
  .hero-scroll { display: none; }

  .about-grid   { grid-template-columns: 1fr; gap: 80px; }
  .about-image  { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-bg-decor { font-size: 28rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-item p { max-width: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5, 9, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 22px 28px 32px;
    gap: 2px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  }

  .nav-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 12px 14px; font-size: 0.95rem; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  .hero-title { letter-spacing: -0.5px; }

  .about      { padding: 96px 0; }
  .services   { padding: 96px 0; }
  .contact    { padding: 96px 0; }

  .about-badge { bottom: -18px; right: -8px; }
  .about-tag-line { bottom: -50px; }

  .contact-form-wrapper { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .scroll-top     { bottom: 84px; right: 20px; }
}

@media (max-width: 600px) {
  .services-grid,
  .inner-page .services-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .btn           { justify-content: center; }
  .hero-title    { font-size: 2.15rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats    { flex-direction: column; gap: 20px; align-items: center; border-top: none; }
  .h-stat-divider { width: 40px; height: 1px; }
  .container     { padding: 0 20px; }
  .about-bg-decor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right,
  .hero-content, .marquee-content, .scroll-line {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
