:root {
    --primary-dark: #0C0707;
    --secondary-dark: #2d2d2d;
    --gold: #d4af37;
    --white: #ffffff;
    --brown: #604B33;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-dark: #333;
	--overlay-color: #94744E;
	--accent-gold: #EEB54E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

img {
	width: 100%;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

/* Navbar */
/* Navigation CSS */
/* Navigation CSS */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-container {
	width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar-logo {
	width: 150px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: #d4af37;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar .nav-link {
  color: #ffffff;
}

.navbar.scrolled .nav-link {
  color: #ffffff;
}

.nav-link.active {
  color: #d4af37;
}

.nav-link:hover {
  color: #d4af37;
}

.login-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar.scrolled .login-btn {
  border-color: #d4af37;
  color: #d4af37;
}

.login-btn:hover {
  background-color: #d4af37;
  color: #1a1a1a;
  border-color: #d4af37;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
	font-size: 0.85rem;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #e5c158;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.btn-brown {
    background-color: var(--brown);
    color: var(--white);
    border: none;
    font-weight: 600;
	font-size: 0.85rem;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-brown:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-dark);
    padding: 160px 0 80px !important;
}

.hero-section h1 {
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-section {
    background-color: var(--primary-dark);
}

.service-card {
    background-color: var(--primary-dark);
    border: 1px solid var(--secondary-dark);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-card h5 {
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
    /* background-color: var(--primary-dark); */
	background: url('../images/testimonial-section-bg.png') no-repeat center center;
	background-size: cover;
    padding: 60px 0;
    border-top: 1px solid var(--secondary-dark);
    border-bottom: 1px solid var(--secondary-dark);
}

.testimonial-section img {
    /* border: 3px solid var(--gold); */
	border-radius: 8px;
}

/* Attorneys Section */
.attorneys-section {
    background-color: var(--secondary-dark);
}

.attorney-card {
    background-color: var(--primary-dark);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.attorney-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.attorney-card img {
    /* border: 3px solid var(--gold); */
    object-fit: cover;
	height: 500px !important;
}

.attorney-card h5 {
    color: var(--text-light);
    margin-top: 15px;
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold) !important;
}

/* Consultation Section */
.consultation-section {
    /* background-color: var(--primary-dark); */
	background: url('../images/testimonial-section-bg.png') no-repeat center center;
	background-size: cover;
    padding: 80px 0;
}

.consultation-content {
    padding-left: 55px;
    padding-right: 55px;
}

.consultation-content img {
	max-width: 115px;
}

.consultation-form {
    /* background-color: var(--secondary-dark) !important; */
	/* background: url('../images/testimonial-section-bg.png') no-repeat center center; */
	/* background-size: cover; */
	background-color: rgba(202, 166, 129,0.5);
	/* background-blend-mode: overlay; */
    /* border: 1px solid var(--secondary-dark); */
}

.consultation-form .form-control,
.consultation-form .form-select {
    background-color: var(--white);
    border: none;
    color: var(--text-dark);
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
}

.consultation-form .form-select {
	color: var(--text-muted);
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    background-color: var(--white);
    border-color: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.consultation-form .form-control::placeholder {
    color: var(--text-muted);
}

.consultation-form .form-select option {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Excellence Section */
.excellence-section {
    /* background-color: var(--secondary-dark); */
}

.excellence-section h2 {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
	background: url('../images/testimonial-section-bg.png') no-repeat center center;
	background-size: cover;
    padding: 80px 0;
}

.accordion-item {
    background-color: transparent;
    border: none !important;
    border-bottom: 1px solid #fff !important;
    margin-bottom: 15px;
    /* border-radius: 8px; */
    overflow: hidden;
}

.accordion-button {
    background-color: transparent;
    color: var(--white);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.accordion-body {
    background-color: transparent;
    color: var(--white);
    border:none !important;
}

/* Documents Section */
.documents-section {
    /* background-color: var(--secondary-dark); */
}

.document-card {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
	margin: 10px 0;
}

.document-card:hover {
	transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.document-card .card-header {
	background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.document-card .card-body {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-top: 1px solid #999 !important;
    padding-top: 10px !important;
    margin-top: 10px !important;
}

.document-card .card-footer a {
	color: var(--text-dark);
	transition: color 0.3s ease;
	background-color: var(--white);
	width: 90%;
}

.document-card .card-footer a:hover {
	background-color: var(--gold);
	color: var(--white);
}


/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-banner {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/placeholder.svg?height=400&width=1200') center/cover;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.hero-banner h1 {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	z-index: 1;
}

/* Contact Page Specific Styles */
.contact-hero-banner {
	background-image: url('../images/contact-banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.contact-hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
	background-color: var(--overlay-color);
	z-index: 1;
	opacity: 0.8;
}

.contact-section {
	background-color: #1a1a1a;
	padding: 80px 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.contact-info p {
	color: #b0b0b0;
	margin-bottom: 40px;
	font-size: 1rem;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.info-box {
	background-color: transparent;
	padding: 25px;
	border-radius: 8px;
	display: flex;
	gap: 15px;
}

.info-box-icon {
	font-size: 2rem;
	color: var(--brown);
	flex-shrink: 0;
}

.info-box-content h3 {
	color: var(--text-white);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-box-content p {
	color: var(--text-white);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.5;
}

.contact-form {
	background-color: #5a5a5a;
	padding: 0px;
	border-radius: 12px;
}

.map-section {
	background-color: #f5f5f5;
	padding: 60px 0;
}

.map-container {
	width: 100%;
	height: 500px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.testimonial-content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 40px;
	align-items: center;
}

.testimonial-image {
	flex-shrink: 0;
}

.testimonial-image img {
	width: 150px;
	height: 150px;
	border-radius: 12px;
	object-fit: cover;
}

.testimonial-text h3 {
	color: white;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.testimonial-text p {
	color: #b0b0b0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.testimonial-button {
	flex-shrink: 0;
}

.testimonial-button button {
	background-color: #c9a961;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-button button:hover {
	background-color: #b8941f;
}

/* About Page Specific Styles */

/* Banner Section */
.about-hero-banner {
	background-image: url('../images/about-banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.about-hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
	background-color: var(--overlay-color);
	z-index: 1;
	opacity: 0.8;
}

/* Attorneys Section */
.attorneys-section {
	padding: 5rem 0;
	background-color: var(--primary-dark);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: var(--text-light);
}

.section-subtitle {
	text-align: center;
	color: var(--text-muted);
	margin-bottom: 3rem;
	font-size: 1rem;
}

.attorney-card {
	text-align: center;
	margin-bottom: 2rem;
}

.attorney-image {
	width: 200px;
	height: 200px;
	border-radius: 15px;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	display: block;
}

.attorney-name {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.attorney-title {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
}

.social-icon {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--primary-dark);
}

.social-icon:hover {
	background-color: var(--accent-gold);
	transform: scale(1.1);
}

/* Video Section */
.video-section {
	padding: 5rem 0;
	/* background-color: var(--secondary-dark); */
	position: relative;
}

.video-container {
	position: relative;
	width: 100%;
	/* max-width: 800px; */
	margin: 0 auto;
	border-radius: 15px;
	overflow: hidden;
	border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.video-thumbnail {
	width: 100%;
	height: 550px;
	background: url('../images/video-thumbnail.jpg') center/cover;
	/* display: block;
	align-items: center;
	justify-content: center; */
	cursor: pointer;
	transition: transform 0.3s ease;
	text-align: center;
	padding-top: calc(25% - 160px);
}

.video-thumbnail:hover {
	transform: scale(1.02);
}

.video-thumbnail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.play-button {
	width: 80px;
	height: 80px;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--primary-dark);
	transition: all 0.3s ease;
	margin: 0 auto 20px;
	z-index: 1;
	position: relative;
}

.video-thumbnail:hover .play-button {
	background-color: var(--gold);
	transform: scale(1.1);
}

.video-title {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-white);
	z-index: 1;
	position: relative;
}

.video-description {
	text-align: center;
	color: var(--text-white);
	max-width: 600px;
	margin: 0 auto;
	z-index: 1;
	position: relative;
}

/* Stats Section */
.stats-section {
	padding: 4rem 0;
	background-color: var(--primary-dark);
}

.stat-row {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-evenly;
    background: #fff;
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}


.stat-box {
	background-color: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	/* margin-bottom: 2rem; */
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--brown);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--primary-dark);
	font-size: 1rem;
	font-weight: 500;
}

/* Advocacy Section */
.advocacy-section {
	padding: 5rem 0;
	/* background-color: var(--secondary-dark); */
}

.advocacy-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.advocacy-image {
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
	height: 400px;
}

.advocacy-text h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.advocacy-text p {
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.btn-learn-more {
	background-color: var(--accent-brown);
	color: var(--text-light);
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-learn-more:hover {
	background-color: var(--accent-gold);
	color: var(--primary-dark);
}

/* Team Section */
.team-section {
	padding: 5rem 0;
	background-color: var(--primary-dark);
}

.team-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.team-image {
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
	height: 400px;
}

.team-text h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.team-text p {
	color: var(--text-muted);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.practice-area {
	margin-bottom: 1.5rem;
}

.practice-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.progress-bar-custom {
	height: 8px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background-color: var(--accent-gold);
	border-radius: 10px;
	width: 0%;
	transition: width 0.3s ease;
}

/* Blog Section */
.blog-section {
	padding: 5rem 0;
	background-color: var(--white);
}

.blog-card {
	background-color: var(--white);
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s ease;
	margin-bottom: 2rem;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center center;
	border-radius: 15px;
}

.blog-content {
	padding: 1.5rem 0;
}

.blog-date {
	color: var(--brown);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	display: block;
}

.blog-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--brown);
	margin-bottom: 0.8rem;
}

.blog-excerpt {
	color: var(--primary-dark);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.blog-card .read-more {
	color: var(--primary-dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.read-more:hover {
	color: white;
}

/* Testimonial Section */
.testimonial-container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2rem;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.testimonial-image {
	width: 150px;
	height: 150px;
	border-radius: 15px;
	object-fit: cover;
}

.testimonial-content h3 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: var(--text-light);
}

.testimonial-content p {
	color: var(--text-muted);
	line-height: 1.8;
}

.btn-ask-expert {
	background-color: var(--accent-brown);
	color: var(--text-light);
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}

.btn-ask-expert:hover {
	background-color: var(--accent-gold);
	color: var(--primary-dark);
}

/* Video Modal */
.modal-video {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
}

.modal-video.active {
	display: flex;
}

.modal-video-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	aspect-ratio: 16 / 9;
}

.close-modal {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.close-modal:hover {
	color: var(--accent-gold);
}

.modal-video iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
}


/* Services Page Specific Styles */
/* Services Section */
.services-hero-banner {
	background-image: url('../images/services-banner.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.services-hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
	background-color: var(--overlay-color);
	z-index: 1;
	opacity: 0.8;
}

.services-intro {
	background-color: var(--primary-color);
	padding: 4rem 0;
}

.services-intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.services-intro h2 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.services-intro p {
	color: var(--text-muted);
	margin-bottom: 1rem;
}
.services-intro-paragraph a {
	color: var(--text-white);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.services-intro .service-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.services-intro .service-card {
	background-color: var(--white);
	padding: 2rem;
	border-radius: 15px;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: slideInUp 0.6s ease-out forwards;
	justify-content: space-between;
}

.services-intro .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-intro .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-intro .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-intro .service-card:nth-child(4) { animation-delay: 0.4s; }

.services-intro .service-card:hover {
	background-color: var(--accent-color);
	color: var(--primary-color);
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(184, 149, 106, 0.3);
}

.services-intro .service-card-icon {
	font-size: 4.0rem;
    color: var(--text-white);
    padding: 15px;
    line-height: 0;
    background: var(--brown);
	border-radius: 8px;
}

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

.services-intro .service-card h3 {
	color:var(--brown);
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.services-intro .service-card:hover h3 {
	color: var(--accent-gold);
}

.services-intro .service-card p {
	font-size: 0.95rem;
	color: var(--text-dark);
}

.services-intro .service-card:hover p {
	color: var(--primary-color);
}

/* Testimonial Section */
.testimonial-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-content {
	flex: 1;
}

.testimonial-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.testimonial-content p {
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.ask-expert-btn {
	background-color: var(--accent-color);
	color: var(--primary-color);
	border: none;
	padding: 0.7rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ask-expert-btn:hover {
	background-color: #d4af7a;
	transform: translateY(-2px);
}

/* Practice Areas Section */
.practice-areas {
	padding: 4rem 0;
}

.practice-areas h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: bold;
}

.practice-areas-subtitle {
	text-align: center;
	color: var(--text-muted);
	margin-bottom: 3rem;
}

.practice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 2rem;
}

.practice-card {
	background-color: var(--white);
	padding: 2rem;
	border-radius: 15px;
	text-align: left;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: fadeInScale 0.6s ease-out forwards;
	opacity: 0;
	cursor: pointer;
}

.practice-card:nth-child(1) { animation-delay: 0.1s; }
.practice-card:nth-child(2) { animation-delay: 0.15s; }
.practice-card:nth-child(3) { animation-delay: 0.2s; }
.practice-card:nth-child(4) { animation-delay: 0.25s; }
.practice-card:nth-child(5) { animation-delay: 0.3s; }
.practice-card:nth-child(6) { animation-delay: 0.35s; }
.practice-card:nth-child(7) { animation-delay: 0.4s; }
.practice-card:nth-child(8) { animation-delay: 0.45s; }
.practice-card:nth-child(9) { animation-delay: 0.5s; }

.practice-card:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(184, 149, 106, 0.3);
}

.practice-icon {
	font-size: 3rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.practice-card:hover .practice-icon {
	color: var(--accent-gold);
}

.practice-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--brown);
}

.practice-card:hover h3 {
	color: var(--text-white);
}

.practice-card p {
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.practice-card:hover p {
	color: var(--text-white);
}

.practice-card .read-more {
	color: var(--brown);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.practice-card:hover .read-more {
	color: var(--accent-gold);
}

/* Pricing Section */
.pricing-section {
	padding: 4rem 0;
	background-color: var(--bg-dark);
}

.pricing-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: bold;
	color: var(--brown);
}

.pricing-subtitle {
	text-align: center;
	color: var(--text-dark);
	margin-bottom: 3rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.pricing-card {
	background-color: #F9F8F5;
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: slideInUp 0.6s ease-out forwards;
	opacity: 0;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
	background-color: var(--accent-color);
	color: var(--text-dark);
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(184, 149, 106, 0.3);
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    justify-content: center;
    width: 70px;
    height: 70px;
    align-items: center;
    text-align: center;
    margin: 0 auto 1rem;
    background: var(--brown);
    border-radius: 50%;
}

.pricing-card:hover .pricing-icon {
	color: var(--text-white);
	background: var(--accent-gold);
}

.pricing-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--brown);
}

.pricing-price {
	font-size: 1.0rem;
	color: var(--brown);
	margin-bottom: 1.5rem;
	font-weight: bold;
}

.pricing-price span {
	color: var(--text-dark);
	font-size: 0.7rem;
	margin-left: 0.2rem;
	vertical-align: super;
}

.pricing-card:hover .pricing-price {
	color: var(--accent-gold);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}

.pricing-features li {
	padding: 0.5rem 0;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pricing-features li:before {
	content: "✓";
	color: var(--accent-color);
	font-weight: bold;
}

.pricing-card:hover .pricing-features li {
	color: var(--primary-color);
}

.pricing-card:hover .pricing-features li:before {
	color: var(--primary-color);
}

.learn-more-btn {
	background-color: var(--accent-color);
	color: var(--primary-color);
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.pricing-card:hover .learn-more-btn {
	background-color: var(--primary-color);
	color: var(--accent-color);
}

.learn-more-btn:hover {
	transform: translateY(-2px);
}


.excellence-btn {
	background-color: var(--accent-color);
	color: var(--primary-color);
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.excellence-btn:hover {
	background-color: #d4af7a;
	transform: translateY(-2px);
}

.excellence-image {
	border-radius: 15px;
	overflow: hidden;
}

.excellence-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* FAQ Section */
.faq-section {
	padding: 4rem 0;
	background-color: var(--bg-dark);
}

.faq-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	font-weight: bold;
}

.social-icons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-icons a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background-color: var(--accent-color);
	color: var(--primary-color);
}

/* Documents Listing Page Specific Styles */
.documents-hero-banner {
	background-image: url('../images/documents-banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.documents-hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
	background-color: var(--overlay-color);
	z-index: 1;
	opacity: 0.8;
}

/* Documents Section */
.documents-section {
	padding: 4rem 2rem;
	margin-top: 2rem;
}

.documents-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.document-card {
	background-color: #2a2a2a;
	padding: 2rem;
	border-radius: 12px;
	border-top: 3px solid #d4af37;
	transition: all 0.3s ease;
	animation: slideUp 0.6s ease-out forwards;
	opacity: 0;
}

.document-card:nth-child(1) { animation-delay: 0.1s; }
.document-card:nth-child(2) { animation-delay: 0.2s; }
.document-card:nth-child(3) { animation-delay: 0.3s; }
.document-card:nth-child(4) { animation-delay: 0.4s; }
.document-card:nth-child(5) { animation-delay: 0.5s; }
.document-card:nth-child(6) { animation-delay: 0.6s; }
.document-card:nth-child(7) { animation-delay: 0.1s; }
.document-card:nth-child(8) { animation-delay: 0.2s; }
.document-card:nth-child(9) { animation-delay: 0.3s; }
.document-card:nth-child(10) { animation-delay: 0.4s; }
.document-card:nth-child(11) { animation-delay: 0.5s; }
.document-card:nth-child(12) { animation-delay: 0.6s; }

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

.read-btn {
	background-color: #fff;
	color: #1a1a1a;
	border: none;
	padding: 0.7rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.read-btn:hover {
	background-color: #d4af37;
	color: #000;
	transform: scale(1.05);
}

/* Load More Button */
.load-more-container {
	text-align: center;
	margin: 3rem 0;
}

.load-more-btn {
	background-color: #8b7355;
	color: #fff;
	border: none;
	padding: 0.8rem 2.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.load-more-btn:hover {
	background-color: #d4af37;
	color: #000;
	transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-dark) !important;
    border-top: 1px solid var(--secondary-dark);
}

.footer h5,
.footer h6 {
    color: var(--text-light);
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold) !important;
}

.footer-logo {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
}

.social-icons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-icons a {
	width: 35px;
	height: 35px;
	background-color: #2a2a2a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background-color: #d4af37;
	color: #000;
}

/* Documents Detail Page Specific Styles */
.back-btn {
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(212, 175, 55, 0.9);
	color: #000;
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.back-btn:hover {
	background-color: #d4af37;
	transform: translateY(-50%) translateX(-5px);
}

/* Detail Content */
.documents-detail-hero-banner {
	background-image: url('../images/document-detail-banner.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	position: relative;
	height: 300px;
}

.documents-detail-hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--overlay-color);
	z-index: 1;
	opacity: 0.8;
}

.detail-section {
	padding: 4rem 2rem;
	background-color: #1a1a1a;
}

.detail-content {
	max-width: 900px;
	margin: 0 auto;
}

.detail-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
	color: #fff;
	border-bottom: 2px solid #d4af37;
	padding-bottom: 1rem;
}

.detail-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 1.5rem;
	text-align: justify;
}

/* CTA Section */
.cta-section {
	background-color: #2a2a2a;
	padding: 3rem 2rem;
	text-align: center;
	margin: 3rem 0;
	/* border-radius: 12px; */
}

.cta-section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.cta-section p {
	color: #ccc;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.cta-btn {
	background-color: #8b7355;
	color: #fff;
	border: none;
	padding: 0.8rem 2.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background-color: #d4af37;
	color: #000;
	transform: scale(1.05);
}

/* Related Documents */
.related-section {
	padding: 3rem 2rem;
	background-color: #1a1a1a;
}

.related-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #fff;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.related-card {
	background-color: #2a2a2a;
	padding: 2rem;
	border-radius: 12px;
	border-top: 3px solid #d4af37;
	transition: all 0.3s ease;
	animation: slideUp 0.6s ease-out forwards;
	opacity: 0;
}

.related-card:nth-child(1) { animation-delay: 0.1s; }
.related-card:nth-child(2) { animation-delay: 0.2s; }
.related-card:nth-child(3) { animation-delay: 0.3s; }

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

.related-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
	border-top-color: #fff;
}

.related-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #fff;
	font-weight: 600;
}

.related-card p {
	color: #ccc;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.read-btn {
	background-color: #fff;
	color: #1a1a1a;
	border: none;
	padding: 0.7rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.read-btn:hover {
	background-color: #d4af37;
	color: #000;
	transform: scale(1.05);
}

.social-icons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-icons a {
	width: 35px;
	height: 35px;
	background-color: #2a2a2a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background-color: #d4af37;
	color: #000;
}


/* Animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}


/* Responsive */
@media (max-width: 768px) {
	.hero-banner {
		margin-top: 66px !important;
		height: 200px;
	}
	
	.hero-banner::before {
		margin-top: 66px !important;
		max-height: 200px !important;
	}

    .hero-section h1 {
        font-size: 2rem;
    }

    .consultation-form {
        margin-top: 30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.hero-banner h1 {
		font-size: 2rem;
	}

	.contact-info h2 {
		font-size: 1.8rem;
	}

	.map-container {
		height: 300px;
	}

	.testimonial-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.testimonial-image {
		display: flex;
		justify-content: center;
	}

	.testimonial-section img {
		margin: 0 auto 1rem;
		width: 120px;
	}
	.section-title {
		font-size: 2rem;
	}

	.advocacy-content,
	.team-content,
	.testimonial-container {
		grid-template-columns: 1fr;
	}

	.testimonial-container {
		grid-template-columns: 1fr;
	}

	.btn-ask-expert {
		width: 100%;
		margin-top: 1rem;
	}

	.attorney-image {
		width: 150px;
		height: 150px;
	}

	.video-thumbnail {
		height: 250px;
	}

	.play-button {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.documents-section {
		padding: 0 1rem;
	}
	.services-intro-content {
		grid-template-columns: 1fr !important;
	}

	.service-cards-grid {
		grid-template-columns: 1fr !important;
	}

	.services-intro h2 {
		font-size: 1.8rem;
	}

	.services-intro .service-card {
		padding: 1rem;
		gap: 0.5rem;
	}
	.services-intro .service-card-icon {
		font-size: 2.0rem;
	}
	.practice-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.practice-card {
		text-align: center;
		padding: 1rem;
	}

	.excellence-section {
		grid-template-columns: 1fr;
	}

	.testimonial-section {
		flex-direction: column;
		text-align: center;
	}

	.testimonial-content {
		text-align: center;
	}

	.pricing-features {
		text-align: center;
	}

	.pricing-features li {
		justify-content: center;
	}
	
	.documents-grid {
		grid-template-columns: 1fr;
	}
	
	.back-btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}

	.detail-title {
		font-size: 1.8rem;
	}

	.nav-link {
		margin: 0.5rem 0;
		font-size: 0.85rem;
	}

	.navbar-container {
		padding: 1rem 1.5rem;
		gap: 1rem;
	}
	
	.nav-menu {
		gap: 1rem;
	}
	
	.login-btn {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}
}

/* Utility Classes */
.text-muted {
    color: var(--text-muted) !important;
}

.text-brown {
    color: var(--brown) !important;
}

.text-gold {
    color: var(--gold);
}

.bg-dark {
    background-color: var(--secondary-dark) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-brown {
    background-color: var(--brown) !important;
}

.border-secondary {
    border-color: var(--secondary-dark) !important;
}