* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #071411;
  color: #f5f5f5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */

.header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  backdrop-filter: blur(14px);

  background:
    rgba(7,20,17,0.55);

  border-bottom:
    1px solid rgba(255,255,255,0.05);
}

.navbar {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 100px;
}

/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 140px;
  padding-bottom: 80px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(213,177,107,0.08),
      transparent 30%
    ),
    #071411;
}

.overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.10),
      rgba(0,0,0,0.65)
    );

  pointer-events: none;
}

.hero-split {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 80px;

  min-height: calc(100vh - 140px);
}

/* HERO LEFT */

.hero-left {
  width: 100%;
}

.tag,
.mini-tag {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: #d5b16b;
}

.hero-left h1 {
  font-size: 72px;
  line-height: 1.02;
  font-weight: 800;

  margin-bottom: 28px;
}

.hero-left p {
  max-width: 620px;

  color: #b8b8b8;

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* HERO RIGHT */

.hero-right {
  display: flex;
  justify-content: center;
}

.lawyers-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 25px;
}

.lawyer-card {
  position: relative;

  width: 290px;

  overflow: hidden;

  border-radius: 32px;
}

.lawyer-card img {
  width: 100%;
  height: 620px;

  object-fit: cover;

  border-radius: 32px;

  border:
    1px solid rgba(213,177,107,0.15);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.45);
}

.lawyer-left {
  transform: translateY(40px);
}

.lawyer-right {
  transform: translateY(-40px);
}

.lawyer-info {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  padding: 22px;

  border-radius: 24px;

  background:
    rgba(0,0,0,0.55);

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,255,255,0.08);
}

.lawyer-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.lawyer-info span {
  color: #d5b16b;

  font-size: 12px;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* BUTTONS */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-card {

  transition: 0.3s ease;

  font-weight: 600;
}

.btn-primary,
.btn-card {

  background: #d5b16b;
  color: #071411;

  padding: 18px 34px;

  border-radius: 999px;
}

.btn-secondary,
.btn-outline {

  padding: 18px 34px;

  border-radius: 999px;

  color: white;

  border:
    1px solid rgba(255,255,255,0.15);
}

/* GENERAL SECTIONS */

.section {
  padding: 120px 0;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 70px;
}

.center {
  text-align: center;
}

.section-header h2,
.professional-content h2,
.contact-box h2 {

  font-size: 52px;
  line-height: 1.1;

  margin-bottom: 25px;
}

.section-header p,
.professional-content p,
.contact-box p,
.stat-card p {

  color: #b5b5b5;

  line-height: 1.8;
}

/* GRIDS */

.stats-grid,
.cards-grid,
.civil-grid,
.professionals-grid {
  display: grid;
  gap: 30px;
}

.stats-grid {
  grid-template-columns: repeat(3,1fr);
}

.cards-grid,
.civil-grid {
  grid-template-columns: repeat(2,1fr);
}

.professionals-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* CARDS */

.stat-card,
.service-card,
.civil-card {

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.05);

  border-radius: 28px;

  padding: 40px;
}

.stat-card h3,
.service-card h3,
.civil-card h3 {

  font-size: 24px;

  margin-bottom: 20px;
}

.service-card ul,
.civil-card ul {

  list-style: none;

  margin-top: 30px;
}

.service-card ul li,
.civil-card ul li {

  padding: 14px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.06);

  color: #c9c9c9;
}

/* DARK SECTION */

.dark-section {
  background: #050c0a;
}

/* PROFESSIONAL */

.professional-image img {
  border-radius: 32px;
}

.professional-content p {
  margin-bottom: 24px;
}

/* CONTACT */

.contact-box {
  position: relative;

  overflow: hidden;

  text-align: center;

  padding: 80px;

  border-radius: 40px;

  background:
    linear-gradient(
      135deg,
      rgba(213,177,107,0.10),
      rgba(255,255,255,0.02)
    );

  border:
    1px solid rgba(213,177,107,0.10);
}

.big-btn {
  margin-top: 40px;
}

/* FOOTER */

footer {

  padding: 40px 0;

  border-top:
    1px solid rgba(255,255,255,0.08);
}

.footer-content {

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content img {
  width: 120px;
}

.footer-content p {
  color: #8d8d8d;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-card {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  text-decoration: none;
}