/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', 'Open Sans', system-ui, -apple-system, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Header */
.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wrap {
  background: #1a1a1a;
}

.header-main {
  background: #1a1a1a;
  padding: 15px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-branding {
  margin-left: 20px;
}

.header-branding img {
  height: 40px;
  width: auto;
}

.header-navigation {
  margin-right: 20px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: red !important;
}

/* Hero Image Box - Full width, centered, 75% height crop */


  width: 100%;
  height: 50vw; /* 75% of natural height: (1024/1536) * 0.75 * 100vw = 50vw */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}






/* Image Overlay */
.hero-image-box {
  width: 100%;
  height: 50vw; /* 75% of natural height: (1024/1536) * 0.75 * 100vw = 50vw */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-box img {
  width: 100%;
  height: 133.33%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.overlay-content {
  text-align: center;
  padding: 20px;
}

.overlay-text-1 {
  font-weight: bold;
  color: #ffffff;
  font-size: 3.75rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.overlay-text-2 {
  font-style: italic;
  color: red !important;
  font-size: 3rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

/* Main Content */
.site-content {
  min-height: 60vh;
  padding: 40px 0;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #e5e7eb;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid #333;
}

.footer-inner {
  width: 100%;
}

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

.site-footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-branding {
    margin-left: 0;
  }
  
  .header-navigation {
    margin-right: 0;
  }
  
  .main-navigation ul {
    justify-content: center;
  }

  .overlay-text-1 {
    font-size: 2.625rem;
  }

  .overlay-text-2 {
    font-size: 2.25rem;
  }
}

/* Features Section */
.features-section {
  background: linear-gradient(to bottom, #3d2008, #1b0b04);
  
  padding: 60px 0;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  background: transparent;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s ease;
}

.feature-box.featured {
  
  
}

.feature-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.feature-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Features */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: #ffffff !important;
  width: 100%;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.about-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #333;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.services-list li {
  padding: 15px 20px;
  background: #f5f5f5;
  border-left: 4px solid #d4af37;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-title {
    font-size: 4rem;
  }

  .about-subtitle {
    font-size: 3rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-list li {
    font-size: 1rem;
  }
}


.lawyer-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lawyer-section {
    padding: 40px 0;
  }
}

/* Lawyer Section */
.lawyer-section {
  background: #ffffff;
  padding: 60px 0;
  width: 100%;
}

.lawyer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.lawyer-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lawyer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 20px;
}

.lawyer-link {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.lawyer-link:hover {
  color: red !important;
  transform: scale(1.1);
  text-shadow: 2px 2px 12px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
  .lawyer-section {
    padding: 40px 0;
  }

  .lawyer-link {
    font-size: 3rem;
  }
}

/* Page Content Styles */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.page-text {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.page-text p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-content {
    padding: 40px 20px;
  }

  .page-content h1 {
    font-size: 2rem;
  }

  .page-text {
    font-size: 1rem;
  }
}

/* Page Content Styles - Additional */
.page-text ul {
  margin: 20px 0;
  padding-left: 30px;
  list-style-type: disc;
}

.page-text li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-text h2 {
    font-size: 1.5rem;
  }
}

/* Blog Headline Section */
.blog-headline-section {
  background: linear-gradient(to bottom, #3d2008, #1b0b04);
  padding: 60px 0;
  width: 100%;
}

.blog-headline-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: transparent;
  border-left: 4px solid #d4af37;
  text-align: center;
}

.blog-headline {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .blog-headline-section {
    padding: 40px 0;
  }

  .blog-headline-box {
    padding: 30px 20px;
  }

  .blog-headline {
    font-size: 1.5rem;
  }
}

/* News Page Styles */
.news-container {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.news-main {
  flex: 2;
  min-width: 0;
}

.news-sidebar {
  flex: 1;
  min-width: 300px;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-item.current {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  border-left: 3px solid #d4af37;
}

.news-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: red !important;
}

.news-item-date {
  font-size: 0.875rem;
  color: #666;
  display: block;
}

.news-article {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.news-meta {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
}

.news-content {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.news-content p {
  margin-bottom: 20px;
}

.news-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

@media (max-width: 968px) {
  .news-container {
    flex-direction: column;
  }
  
  .news-sidebar {
    position: static;
    min-width: auto;
  }
  
  .news-title {
    font-size: 2rem;
  }
}

/* Contact Page Styles */
.contact-intro {
  margin-bottom: 40px;
  text-align: center;
}

.contact-intro h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #666;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  flex: 2;
}

.contact-info {
  flex: 1;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  height: fit-content;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
}

.contact-info p {
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.contact-info a {
  color: red !important;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: red !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: #d4af37;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #b8941f;
}

.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 968px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-info {
    order: -1;
  }
}

/* Footer Links Styling */
.footer-content a {
  color: red !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Fix z-index for news content */
.news-main {
  position: relative;
  z-index: 1;
}

.news-sidebar {
  position: sticky;
  z-index: 2;


.read-news-link {
  text-align: center !important;
  color: #ff0000 !important;
  font-weight: bold !important;
  margin-top: 15px !important;
  font-size: 1.1em !important;
}
