/* ==========================================================
   Color Palette
========================================================== */

:root {
  /* Brand */
  --primary: #0f3d7a;
  --primary-dark: #0b2e5b;
  --primary-light: #2a5fa8;

  /* Accent */
  --accent: #c8a45a;
  --accent-dark: #b18e46;
  --accent-light: #d8bb80;

  /* Background */
  --bg-body: #f3f3f4;
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;

  /* Text */
  --text-dark: #222222;
  --text: #333333;
  --text-light: #666666;

  /* Border */
  --border: #dddddd;

  /* Shadow */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius: 12px;

  /* Transition */
  --transition: all 0.3s ease;
}

/* ==========================================================
   General
========================================================== */

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg-body);
  line-height: 1.8;
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

p {
    text-align: justify;
}
img {
  max-width: 100%;
}

.container {
  max-width: 1320px;
}

/* ==========================================================
   Typography
========================================================== */

/* ==========================================================
   Typography
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title small {
  display: inline-block;

  text-transform: uppercase;

  color: var(--accent);

  letter-spacing: 2px;

  font-weight: 700;

  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 52px;
  font-weight: 600;
  color: var(--primary);
}

.section-title p {
  color: var(--text-light);

  max-width: 700px;

  margin: auto;
}

/* ==========================================================
   Header
========================================================== */

.header-top {
  background: var(--bg-body);

  padding: 25px 0;
}

.logo img {
  width: 340px;

  height: auto;
}

/* ==========================================
   Navigation
========================================== */

.navbar {
  border-bottom: 1px solid #e5e5e5;

  padding: 18px 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 70px;

  width: auto;
}

.navbar-nav {
  margin-left: auto;

  gap: 45px;
}

.nav-link {
  position: relative;

  padding: 12px 0 !important;

  font-family: "Cormorant Garamond", serif;

  font-size: 24px;

  font-weight: 600;

  color: var(--text);

  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary);

  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;

  box-shadow: none !important;

  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 2rem;

  height: 2rem;
}
/* ==========================================================
   Hero
========================================================== */

.hero {
  position: relative;

  overflow: hidden;
}

.hero picture,
.hero-image {
  display: block;

  width: 100%;
}

.hero-image {
  width: 100%;

  height: 100%;
}

.hero-content {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  z-index: 2;
}
.carousel-caption {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  text-align: left;
}

.carousel-caption h1 {
  font-size: 72px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 30px;
}

.carousel-caption p {
  font-size: 20px;

  color: rgba(255, 255, 255, 0.9);

  max-width: 560px;

  margin-bottom: 35px;
}

/* ==========================================================
   Buttons
========================================================== */

.btn-primary {
  background: var(--primary);

  border-color: var(--primary);

  padding: 14px 30px;

  border-radius: 0;
}

.btn-primary:hover {
  background: var(--accent);

  border-color: var(--accent);
}

.btn-warning {
  background: var(--accent);

  border-color: var(--accent);

  color: #fff;

  padding: 14px 30px;

  border-radius: 0;
}

.btn-warning:hover {
  background: var(--accent-dark);

  border-color: var(--accent-dark);

  color: #fff;
}

/* ==========================================================
   Cards
========================================================== */

.card {
  border: 0;

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
}

.card-body {
  padding: 40px;
}

.card i {
  color: var(--primary);
  transition: var(--transition);
}

.card:hover i {
  color: var(--accent);
}
.card h5 {
  margin-top: 25px;

  margin-bottom: 18px;
}

/* ==========================================================
   Why Choose Us
========================================================== */

/* ==========================================================
   Why Us
========================================================== */

.why-card {
  padding: 40px 25px;

  background: var(--bg-white);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  height: 100%;

  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  color: var(--primary);

  transition: var(--transition);
}

.why-card:hover i {
  color: var(--accent);
}

.why-card h5 {
  margin-bottom: 0;
}

/* ==========================================================
   Team
========================================================== */

.team-card {
  border-radius: var(--radius);

  overflow: hidden;

  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-avatar {
  width: 100px;

  height: 100px;

  margin: auto;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 34px;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;
}

.team-card h4 {
  margin-top: 30px;
}

.team-card .text-primary {
  color: var(--accent) !important;
}

/* ==========================================================
   CTA
========================================================== */

.cta {
  padding: 110px 0;

  background: var(--primary);

  color: #fff;
}

.cta h2 {
  color: #fff;

  font-size: 46px;

  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;

  opacity: 0.9;
}

.cta .btn {
  border-radius: 0;

  font-weight: 600;

  padding: 16px 38px;
}

/* ==========================================================
   Content Pages
========================================================== */

.about-image {
  position: sticky;
  top: 110px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;

  border: 8px solid #fff;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);

  transition: 0.35s;
}

.about-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .about-image {
    position: static;
    margin-top: 20px;
  }
}

.practice-area {
  margin-bottom: 40px;
}

.practice-area h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.practice-area h5 {
  margin-top: 35px;
  margin-bottom: 20px;

  color: var(--primary);
}

.practice-list {
  padding-left: 0;
  list-style: none;
}

.practice-list li {
  position: relative;

  padding-left: 28px;
  margin-bottom: 12px;
}

.practice-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--accent);

  font-weight: 700;
}

/* ==========================================
   Internal Page Header
========================================== */

.page-header {
  background: var(--primary);
  color: #fff;

  padding: 90px 0;
}

.page-header small {
  display: inline-block;

  color: var(--accent);

  text-transform: uppercase;

  letter-spacing: 2px;

  font-weight: 600;

  margin-bottom: 15px;
}

.page-header h1 {
  color: #fff;

  margin-bottom: 25px;
}

.page-header p {
  max-width: 760px;

  margin: auto;

  color: rgba(255, 255, 255, 0.85);

  font-size: 20px;

  line-height: 1.8;
}

.team-member img {
  width: 60%;
  border-radius: 20px;
}

.contact-item {
  display: flex;

  gap: 20px;

  margin-bottom: 35px;
}

.map-wrapper {
  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  display: block;
}

/* ==========================================
   Footer
========================================== */

.footer {
  background: var(--primary);

  color: #d9d9d9;

  padding: 70px 0 0;
}

.footer-logo {
  height: 70px;

  width: auto;

  margin-bottom: 10px;
}

.footer h5 {
  font-family: "Cormorant Garamond", serif;

  font-size: 1.8rem;

  color: #fff;

  margin-bottom: 25px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d9d9d9;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);

  padding-left: 6px;
}

.footer-contact {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-contact li {
  display: flex;

  gap: 12px;

  margin-bottom: 18px;

  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);

  font-size: 1.1rem;

  margin-top: 4px;
}

.footer-contact a {
  color: #d9d9d9;

  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  margin-top: 60px;

  padding: 20px 0;

  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--gold);

  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 991px) {
  .logo img {
    width: 220px;
  }

  .header-top {
    padding: 15px 0;
  }

  .header-top .col-lg-7 {
    display: none;
  }

  .carousel-caption h1 {
    font-size: 42px;
  }

  .hero img {
    height: 500px;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar-brand img {
    height: 55px;
  }
  .navbar-collapse {
    margin-top: 20px;

    border-top: 1px solid #eee;

    padding-top: 15px;
    margin-left: 60px;
  }

  .navbar-nav {
    gap: 0;

    margin-top: 15px;
  }
  .nav-link {
    font-size: 22px;

    padding: 12px 0 !important;
  }
}


/* ==========================================================
Team
========================================================== */

.team-group-title {

margin-bottom: 50px;

}

.team-group-title small {

display: block;

color: var(--accent);

font-weight: 600;

letter-spacing: 2px;

text-transform: uppercase;

margin-bottom: 8px;

}

.team-group-title h2 {

color: var(--primary);

font-size: 42px;

margin: 0;

}

.team-group-title-spaced {

margin-top: 100px;

}

.team-member h2 {

color: var(--primary);

margin-bottom: 10px;

}

.team-member p {

line-height: 1.9;

}

.team-member img {

width: 100%;

}

@media (max-width: 991px) {

.team-group-title-spaced {

margin-top: 70px;

}

}



/* ==========================================================
   Disclaimer Overlay
========================================================== */

.disclaimer-overlay {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: rgba(5, 25, 50, .88);

    backdrop-filter: blur(5px);

    overflow-y: auto;

}


.disclaimer-box {

    width: 100%;

    max-width: 900px;

    max-height: 90vh;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, .3);

    display: flex;

    flex-direction: column;

    overflow: hidden;

}


.disclaimer-header {

    padding: 30px 40px 25px;

    border-bottom: 1px solid var(--border);

    text-align: center;

}


.disclaimer-logo {

    width: 220px;

    max-width: 80%;

    height: auto;

    margin-bottom: 20px;

}


.disclaimer-header h2 {

    margin: 0;

    color: var(--primary);

    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;

    font-weight: 600;

}


.disclaimer-content {

    padding: 30px 40px;

    overflow-y: auto;

    color: var(--text);

    font-size: 15px;

    line-height: 1.7;

}


.disclaimer-content p {

    margin-bottom: 20px;

}


.disclaimer-content ul {

    padding-left: 25px;

    margin-bottom: 25px;

}


.disclaimer-content li {

    margin-bottom: 14px;

}


.disclaimer-content a {

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

}


.disclaimer-content a:hover {

    color: var(--accent);

    text-decoration: underline;

}


.disclaimer-footer {

    padding: 20px 40px 30px;

    border-top: 1px solid var(--border);

    text-align: center;

    background: var(--bg-light);

}


.disclaimer-footer .btn {

    min-width: 150px;

    padding: 12px 30px;

    font-weight: 600;

}

@media (max-width: 767px) {

    .disclaimer-overlay {

        padding: 12px;

        align-items: flex-start;

    }

    .disclaimer-box {

        max-height: 96vh;

        margin-top: 10px;

    }

    .disclaimer-header {

        padding: 25px 20px 20px;

    }

    .disclaimer-logo {

        width: 180px;

        margin-bottom: 15px;

    }

    .disclaimer-header h2 {

        font-size: 28px;

    }

    .disclaimer-content {

        padding: 22px 20px;

        font-size: 14px;

        line-height: 1.65;

    }

    .disclaimer-content ul {

        padding-left: 20px;

    }

    .disclaimer-footer {

        padding: 15px 20px 20px;

    }

}
