:root {
    --gold: #b8864e;
    --gold-light: #d4a96a;
    --navy: #1c2b3a;
    --slate: #3d4f60;
    --text: #2e3b48;
    --muted: #6b7e8f;
    --bg: #f7f5f1;
    --surface: #ffffff;
    --border: #e4ddd4;
}


.attorney-section{
    background: #ffffff;
    padding-bottom: 100px;
}
.pt-50 {
    padding-top: 50px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.card {
    background: var(--surface);
    max-width: 960px;
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: fadeUp 0.6s ease both;
}

.card-width {
    max-width: 1280px;
    width: 100%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── LEFT ACCENT BAR ── */
.card-inner {
    display: flex;
}

.accent-bar {
    width: 5px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 60%, transparent 100%);
    flex-shrink: 0;
}

.content {
    padding: 30px;
    flex: 1;
    min-width: 0;
}

/* ── HEADER ── */
.header {
    margin-bottom: 36px;
}

.subtext-wrap {
    position: relative;
    width: 100%;
    font-family: 'Bad Script', cursive;
    color: #707070;
    font-weight: normal;
    text-align: center;
    /* font-size: 20px; */
    line-height: 20px;
    z-index: 100;
}

.name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.55rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.title {
    margin-top: 6px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
}

/* ── TWO-COLUMN META ── */
.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.meta-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meta-right {
    border-left: 1px solid var(--border);
    padding-left: 48px;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
}

.meta-label svg {
    flex-shrink: 0;
}

.meta-value {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.55;
    padding-left: 22px;
    display: flex;
    justify-content: start;
}

/* ── SPECIALIZATION ── */
.spec-label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-value {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.55;
    margin-bottom: 20px;
}

.practice-heading {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.775rem;
    color: var(--slate);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 5px 12px;
    background: var(--bg);
    letter-spacing: 0.01em;
    transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
    border-color: var(--gold-light);
    color: var(--gold);
}

/* ── PROFILE ── */
.section {
    margin-bottom: 32px;
}

.section-heading {

    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.profile-text {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.78;
}

/* ── ACHIEVEMENTS ── */
.achievements {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.55;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

/* ── RESPONSIVE ── */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    .name {
        font-size: 2.2rem;
    }

    .meta-grid {
        gap: 0 32px;
    }

    .meta-right {
        padding-left: 32px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    body {
        padding: 24px 16px;
        align-items: flex-start;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .content {
        padding: 24px;
    }

    .name {
        font-size: 1.9rem;
    }

    .header {
        margin-bottom: 24px;
    }

    .title {
        justify-content: flex-start;
    }

    .meta-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }

    .meta-right {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 32px;
    }

    .meta-left {
        gap: 16px;
    }

    .meta-value {
        padding-left: 0;
    }


}

/* Large phones */
@media (max-width: 540px) {
    body {
        padding: 16px 12px;
    }

    .card {
        border-radius: 2px;
    }

    .accent-bar {
        width: 4px;
    }

    .content {
        padding: 20px 16px;
    }

    .name {
        font-size: 1.65rem;
        letter-spacing: -0.3px;
    }

    .title {
        font-size: 0.8rem;
    }

    .header {
        margin-bottom: 20px;
    }

    .meta-grid {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .meta-label {
        font-size: 0.72rem;
    }

    .meta-value {
        font-size: 0.82rem;
    }

    .spec-value {
        font-size: 0.82rem;
    }

    .tags {
        gap: 6px;
    }

    .tag {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    .section {
        margin-bottom: 24px;
    }

    .section-heading {
        font-size: 1rem;
    }

    .profile-text,
    .achievements li {
        font-size: 0.825rem;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .content {
        padding: 16px 12px;
    }

    .name {
        font-size: 1.45rem;
    }

    .accent-bar {
        width: 3px;
    }

    .tag {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
}




.team-section {
    width: 100%;
    background: #f5f5f5;
   
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0px 100px 0px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: start;
}

.team-row {
    display: flex;
    gap: 24px;
}

.team-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e3b;
    margin: 0 0 6px 0;
    text-align: start;
}

.team-card .team-role {
    font-size: 14px;
    color: #6b7a8d;
    margin: 0 0 20px 0;
}

.team-card .team-meta {
    font-size: 14px;
    color: #3d3d3d;
    margin: 0 0 10px 0;
}

.team-card .team-meta strong {
    color: #1a2e3b;
}

.team-card p:last-child {
    font-size: 14px;
    color: #555f6d;
    line-height: 1.7;
    margin: 16px 0 0 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .team-row {
        flex-direction: column;
    }

    .team-container {
        padding: 20px 16px;
    }

    .team-section {
        margin-top: 50px;
    }
}

.about-top-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0 16px 0;
}

.about-top-text ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.about-top-text a {
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.about-top-text a:hover {
    text-decoration: underline;
}

.about-top-text a {
    color: #000000 !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.about-top-text a:hover {
    text-decoration: underline;
}


/* Responsive Footer */
@media only screen and (max-width: 768px) {

    .footer .one-third.column {
        width: 100% !important;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer .logo-footer {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        justify-content: center;
        margin-right: 0 !important;
    }

    .footer .line-sep {
        margin: 10px 0;
    }

}

@media only screen and (max-width: 480px) {

    .footer-links {
        flex-direction: row;
        gap: 35px;
        align-items: center;
    }

}

.logo-link {
  
  text-decoration: none;
}


div#overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.55) !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
}
div#overlay.open {
  display: flex !important;
}
div#modal {
  background: #ffffff ;
  border-radius: 14px ;
  width: 90% ;
  max-width: 32rem;
  padding: 36px;
  position: relative;
  border-top: 3px solid #c49a4a ;
  max-height: 90vh ;
  overflow-y: auto ;
  top: auto ;
  left: auto ;
  margin: 0 ;
  float: none ;
  box-sizing: border-box ;
}
.modal-close {
  position: absolute ;
  top: 16px ;
  right: 20px ;
  background: none ;
  border: none ;
  font-size: 22px ;
  cursor: pointer ;
  color: #666 ;
}
.field { margin-bottom: 14px ; }
.field label { display: block ; font-size: 13px ; font-weight: 500 ; margin-bottom: 5px ; }
.field input, .field select, .field textarea {
  width: 100% ;
  padding: 10px 13px ;
  border: 1px solid #ddd ;
  border-radius: 8px ;
  font-size: 14px ;
  outline: none ;
  box-sizing: border-box ;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #c49a4a ;
}
.field textarea { min-height: 85px ; resize: vertical ; }
.phone-row { display: grid ; grid-template-columns: 155px 1fr ; gap: 10px ; }
.submit-btn {
  width: 100% ;
  background: #c49a4a ;
  color: #fff ;
  border: none ;
  border-radius: 8px ;
  padding: 13px ;
  font-size: 15px ;
  cursor: pointer ;
  margin-top: 6px ;
}
.submit-btn:hover { background: #bc8b5b ; }
.req { color: #bc8b5b ; }
#successView { display: none; text-align: center ; padding: 20px 0 ; }
.success-circle {
  width: 60px ; height: 60px ;
  background: #f5e9d0 ;
  border-radius: 50% ;
  display: flex ; align-items: center ; justify-content: center ;
  margin: 0 auto 16px ;
}
.success-circle svg { width: 28px ; height: 28px ; stroke: #c49a4a ; fill: none ; stroke-width: 2 ; stroke-linecap: round ; }
.close-success {
  background: transparent ; color: #c49a4a ;
  border: 1.5px solid #c49a4a ;
  border-radius: 8px ; padding: 10px 28px ;
  font-size: 14px ; cursor: pointer ; margin-top: 12px ;
}
div#modal {
  text-align: left !important;
}

div#modal h2,
div#modal p,
div#modal label {
  text-align: left !important;
}

  .ty-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f8f5f0;
    font-family: 'Poppins', sans-serif;
  }
 
  .ty-box {
    text-align: center;
    max-width: 660px;
    width: 100%;
    animation: tyFadeUp 0.6s ease both;
  }
 
  @keyframes tyFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .ty-logo {
    margin-bottom: 40px;
  }
  .ty-logo img {
    height: 50px;
    width: auto;
  }
 
  .ty-check {
    width: 86px;
    height: 86px;
    background: #f5e9d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
  }
  .ty-check svg {
    width: 40px;
    height: 40px;
    stroke: #c49a4a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .ty-label {
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #c49a4a;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
  }
 
  .ty-box h1 {
    font-size: 34px !important;
    font-weight: 600 !important;
    color: #1a1814 !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.5px !important;
  }
 
  .ty-sub {
    font-size: 15px;
    color: #6b6560;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
 .btn-wrapper {
    display: flex;
    justify-content: center;
}

.error-field{
    border: solid 1px #cc0000 !important;
}