/* =========================================================
   Sehrish Khawar & Associates — Bootstrap + Custom Styles
   Matched exactly to original design
   ========================================================= */

:root {
  --navy: #071b2d;
  --navy-2: #0c2a42;
  --gold: #c9a35f;
  --gold-light: #dfc38c;
  --ink: #17212a;
  --paper: #f6f4ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(5, 24, 39, .12);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

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

/* --- Utility --- */
.letter-spacing { letter-spacing: 0.22em; }
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.text-secondary-custom { color: #46515c; }
.text-white-custom { color: #e7edf0; }
.section-title { color: var(--navy); }
.bg-paper { background-color: var(--paper) !important; }

/* --- Gold Rule --- */
.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   HEADER — exact match: height 96px, logo 172px, nav underline
   ========================================================= */
.ska-header {
  height: 96px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(8,29,47,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 22px rgba(3,20,32,.05);
}
.ska-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ska-header .brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
  padding: 7px 0;
}
.ska-header .brand-logo img {
  width: 172px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.ska-header .main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ska-header .main-nav a {
  position: relative;
  padding: 35px 0 30px;
  color: inherit;
}
.ska-header .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.ska-header .main-nav a:hover::after,
.ska-header .main-nav a.active::after {
  right: 0;
}
.ska-header .nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
}

/* =========================================================
   HERO — exact match: min-height 650px, padding 92px, font sizes
   ========================================================= */
.hero-section {
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,19,31,.76), rgba(3,23,38,.72) 46%, rgba(3,19,31,.66)),
    url("../images/law.jpg.jpeg") center center / cover no-repeat;
  background-color: #061b2b;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,11,19,.10), rgba(1,13,22,.24));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 92px 20px;
}
.hero-eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-section h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
}
.hero-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  color: var(--gold-light);
  margin: 24px 0 0;
  font-weight: 500;
}
.hero-kicker {
  text-transform: lowercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  opacity: 0.78;
  margin: 10px 0 34px;
}

/* --- Button Gold --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  font: 600 13px/1 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s;
  background: var(--gold);
  color: #071b2d;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #071b2d;
  transform: translateY(-1px);
}

/* =========================================================
   ABOUT — exact match: 94px padding, narrow 840px, centered
   ========================================================= */
.section-about {
  padding: 94px 0;
}
.section-about h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}
.section-about .lead {
  font-size: 16px;
  color: #46515c;
  line-height: 1.95;
  margin: 0;
}

/* =========================================================
   WHY CHOOSE — exact match: min-height 620px, bg image
   ========================================================= */
.why-section {
  min-height: 620px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,19,31,.88), rgba(3,22,36,.77) 47%, rgba(3,19,31,.42)),
    url("../images/why-choose-bg.jpg") center center / cover no-repeat;
  background-color: #061b2b;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 70px 0;
}
.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.14));
  pointer-events: none;
}
.why-inner {
  position: relative;
  z-index: 1;
}
.why-heading {
  max-width: 940px;
  margin: 0 auto 56px;
  text-align: center;
}
.why-gold-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.why-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.26);
}
.why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.why-points li {
  display: flex;
  align-items: start;
  gap: 14px;
  margin: 0;
  padding: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
.why-points li:last-child { padding-bottom: 0; }
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  color: var(--gold-light);
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-2px);
}

/* =========================================================
   PRACTICE AREAS — exact match: paper bg, grid proportions
   ========================================================= */
.section-practice {
  padding: 94px 0;
  background: var(--paper);
}
.section-practice h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.practice-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
  max-width: 1160px;
  margin: 46px auto 0;
}
.practice-core-visual {
  position: sticky;
  top: 122px;
  margin: 0;
  align-self: start;
}
.practice-core-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #0b1720;
  box-shadow: var(--shadow);
}
.practice-core-visual figcaption {
  position: absolute;
  right: -20px;
  bottom: -24px;
  padding: 19px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.practice-list {
  display: grid;
  gap: 0;
}
.practice-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid #d8d2c6;
}
.practice-card:first-child {
  border-top: 1px solid #d8d2c6;
}
.practice-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}
.practice-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.15;
  margin: 0 0 7px;
  color: var(--navy);
}
.practice-card p {
  margin: 0;
  color: #5b636b;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   WORLDWIDE — exact match: 96px padding, bg image
   ========================================================= */
.worldwide-section {
  padding: 96px 0;
  background:
    linear-gradient(rgba(4,22,35,.91), rgba(4,22,35,.94)),
    url("../images/3611.jpg") center 36% / cover fixed;
  background-color: #04131f;
  color: #fff;
  text-align: center;
}
.worldwide-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}
.worldwide-section p {
  font-size: 17px;
  line-height: 1.9;
  color: #e7edf0;
  margin: 0;
}

/* =========================================================
   CONSULTATION — exact match: padding, form sizing
   ========================================================= */
.section-consultation {
  padding: 80px 0 112px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 770px;
  background: #061b2b;
  color: #fff;
}
.consult-form {
  width: min(760px, 100%);
  min-height: 650px;
  margin: 0 auto;
  padding: 46px 44px 72px;
  background: #fff;
  color: var(--ink);
}
.consult-form label {
  display: block;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 29px;
  color: #172735;
}
.consult-form input,
.consult-form textarea {
  width: 100%;
  display: block;
  margin-top: 14px;
  border: 1px solid #d9d7d1;
  background: #fbfaf7;
  padding: 13px 14px;
  font: 400 15px/1.5 "Montserrat", sans-serif;
  color: #1d2932;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}
.consult-form input {
  height: 60px;
}
.consult-form textarea {
  height: 196px;
  min-height: 196px;
  resize: vertical;
}
.consult-form input:focus,
.consult-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,163,95,.12);
}
.consult-submit {
  width: 136px;
  height: 58px;
  border: 0;
  background: #cda65b;
  color: #071b2d;
  font: 600 14px/1 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.2s;
}
.consult-submit:hover {
  background: #ddb96e;
}
.consult-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-status {
  margin-top: 14px;
  min-height: 24px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}
.form-status.ok { color: #1c7445; }
.form-status.error { color: #aa2b2b; }

/* =========================================================
   FOOTER — exact match: padding 32px, centered copyright
   ========================================================= */
.site-footer {
  background: #04131f;
  color: #c9d0d5;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 32px 0;
}
.footer-final {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-final .copyright {
  margin: 0;
  color: #e9edf0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =========================================================
   RESPONSIVE — exact match to original breakpoints
   ========================================================= */
@media (max-width: 950px) {
  .practice-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    max-width: 760px;
  }
  .practice-core-visual {
    position: relative;
    top: auto;
    width: 100%;
  }
  .practice-core-visual figcaption {
    right: 18px;
    bottom: -22px;
  }
}

@media (max-width: 720px) {
  /* Header */
  .ska-header { height: 82px; }
  .ska-header .brand-logo img { width: 138px; max-height: 66px; }
  .ska-header .nav-toggle { display: block; }
  .ska-header .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    padding: 12px 24px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .ska-header .main-nav.open { display: flex; }
  .ska-header .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  .ska-header .main-nav a::after { display: none; }

  /* Hero */
  .hero-section { min-height: 590px; }
  .hero-content { padding: 70px 10px; }

  /* About */
  .section-about { padding: 72px 0; }
  .section-about h2 { font-size: 42px; }
  .section-about .lead { font-size: 16px; }

  /* Why Choose */
  .why-section {
    min-height: 560px;
    padding: 58px 0;
    background-position: 58% center;
  }
  .why-heading { margin-bottom: 42px; }
  .why-heading h2 { font-size: clamp(28px, 8vw, 38px); }
  .why-points li {
    gap: 11px;
    font-size: 16px;
  }
  .check-icon { width: 29px; min-width: 29px; height: 29px; font-size: 27px; }

  /* Practice */
  .section-practice { padding: 72px 0; }
  .practice-layout { gap: 46px; margin-top: 34px; }
  .practice-core-visual figcaption { right: 12px; bottom: -18px; padding: 14px 17px; font-size: 20px; }
  .practice-card { grid-template-columns: 46px 1fr; gap: 12px; }
  .practice-card h3 { font-size: 26px; }

  /* Worldwide */
  .worldwide-section { padding: 72px 0; background-attachment: scroll; }

  /* Consultation */
  .section-consultation { padding: 58px 16px 78px; min-height: auto; }
  .consult-form { padding: 30px 24px 42px; min-height: 0; }
  .consult-form input { height: 54px; }
  .consult-form textarea { height: 165px; min-height: 165px; }

  /* Footer */
  .footer-final .copyright { font-size: 14px; }
}
