/* 
====================================================================
  SAL STEEL LTD - MAIN STYLESHEET
  Theme: Corporate, Industrial, Clean
==================================================================== 
*/

:root {
  /* Branding Colors */
  --primary-blue: #003366;    /* Deep Blue */
  --primary-green: #28a745;   /* Green from '+' symbol */
  --secondary-grey: #f4f6f8;  /* Light Background */
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e0e0e0;
  
  /* Dimensions */
  --header-height: 80px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   UTILITIES & COMPONENTS
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-grey {
  background-color: var(--secondary-grey);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-white:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

/* Scroll Animation Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
}

/* Breadcrumb */
.breadcrumb-area {
  background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('../images/common_banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
  color: var(--white);
  text-align: center;
  margin-top: var(--header-height);
}

.breadcrumb-area h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb-links a {
  color: #ccc;
  font-weight: 500;
}

.breadcrumb-links a:hover {
  color: var(--primary-green);
}

.breadcrumb-links span {
  margin: 0 10px;
  color: var(--primary-green);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: var(--header-height);
  transition: var(--transition-fast);
}

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

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}


.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-green);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  /* Static Image Background Support */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Slightly darker for better text contrast */
}

.hero-overlay > .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px; /* Space for footer */
}

.hero-content {
  max-width: 900px;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  color: #f0f0f0;
  font-size: 1.25rem; /* Increased size */
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
}

/* Hero Footer Styles */
.hero-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 2;
}

.subsidiary-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.btn-subsidiary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-subsidiary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Hero Footer Responsive */
@media (max-width: 768px) {
  .hero-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 0 20px;
  }
  
  .btn-subsidiary {
    order: 2;
    font-size: 0.95rem;
  }
}

/* =========================================
   ABOUT PREVIEW & VISION
   ========================================= */
.about-preview {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--primary-green);
  border-left: 5px solid var(--primary-green);
  z-index: -1;
}

.about-text {
  flex: 1;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 15px;
}

.link-arrow i {
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.link-arrow:hover i {
  margin-left: 12px;
}

/* =========================================
   BUSINESS CTA
   ========================================= */
.business-cta {
  background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}

.business-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.business-cta p {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* =========================================
   LEADERSHIP & TESTIMONIALS
   ========================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.leader-card {
  text-align: center;
  background: var(--white);
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.leader-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--primary-green);
}

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

.leader-card h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.leader-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.leader-card p.text-primary {
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.testimonial-slider {
  padding: 20px 0;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 700;
  color: var(--primary-blue);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.faq-question {
  padding: 20px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-blue);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
}

/* =========================================
   PAGE SPECIFIC: INVESTORS / SUSTAINABILITY
   ========================================= */
.doc-list {
  background: var(--white);
  border: 1px solid var(--border-color);
}

.doc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.doc-item:last-child { border-bottom: none; }

.doc-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.doc-title i {
  color: #d9534f; /* PDF Red */
  font-size: 1.5rem;
}

.sus-block {
  margin-bottom: 40px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.success-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
  border: 1px solid #c3e6cb;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.9rem;
  /* Updated layout for legal links */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-legal a {
    color: #999;
    margin-left: 15px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

/* =========================================
   PRODUCTION CAPACITY
   ========================================= */
.capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.capacity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.capacity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.capacity-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.capacity-card h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.capacity-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.capacity-sub {
    font-size: 0.9rem;
    color: var(--primary-green);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .capacity-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   GALLERY SLIDER
   ========================================= */
.gallery-slider-section {
  padding: 80px 0;
  background-color: var(--secondary-grey);
}

.gallery-slider-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-slider-section .section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.gallery-slider-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
}

/* Full Width Slider Container */
.gallery-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  width: 100%;
  height: 500px;
  position: relative;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.slider-arrow i {
  color: var(--white);
  font-size: 1.2rem;
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background-color: var(--primary-green);
  border-color: var(--white);
  transform: scale(1.2);
}

/* Responsive Gallery Slider */
@media (max-width: 991px) {
  .gallery-slider {
    height: 400px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  
  .slider-arrow.prev {
    left: 15px;
  }
  
  .slider-arrow.next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .gallery-slider {
    height: 300px;
  }
  
  .slider-dots {
    bottom: 15px;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 991px) {
  .header .container {
    position: relative;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: scaleY(1);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-preview {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    width: 100%;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .footer-legal {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  
  .footer-legal a {
      margin-left: 0;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   INVESTORS PAGE - TAB LAYOUT
   ========================================= */
.investors-wrapper {
  display: flex;
  gap: 40px;
  min-height: 600px;
}

/* Left Sidebar - Tab Navigation */
.investors-sidebar {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.investors-tabs {
  display: flex;
  flex-direction: column;
}

.investors-tabs .tab-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.investors-tabs .tab-link:last-child {
  border-bottom: none;
}

.investors-tabs .tab-link i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.investors-tabs .tab-link:hover {
  background: var(--secondary-grey);
  color: var(--primary-blue);
}

.investors-tabs .tab-link.active {
  background: var(--primary-blue);
  color: var(--white);
  border-left: 4px solid var(--primary-green);
}

.investors-tabs .tab-link.active i {
  color: var(--white);
}

/* Right Side - Tab Content */
.investors-content {
  flex: 1;
  min-width: 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* Year Filter */
.year-filter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: var(--secondary-grey);
  border-radius: 4px;
}

.year-filter label {
  font-weight: 600;
  color: var(--primary-blue);
  white-space: nowrap;
}

.year-select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  min-width: 150px;
}

.year-select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Doc List - Updated styles for investors page */
.tab-content .doc-list {
  margin-top: 20px;
}

.tab-content .doc-item {
  padding: 18px 20px;
}

.tab-content .doc-title {
  flex: 1;
  gap: 12px;
}

.tab-content .doc-title i {
  font-size: 1.3rem;
}

.tab-content .doc-title span {
  font-size: 0.95rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Investor Contact Page Styles */
.investor-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 30px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-green);
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  width: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail strong {
  display: block;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail p {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Investors Page */
@media (max-width: 991px) {
  .investors-wrapper {
    flex-direction: column;
  }
  
  .investors-sidebar {
    flex: none;
    width: 100%;
    position: relative;
    top: 0;
    max-height: none;
  }
  
  .investors-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  
  .investors-tabs .tab-link {
    flex: 1 1 calc(50% - 5px);
    padding: 15px;
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .investors-tabs .tab-link span {
    display: none;
  }

  .investors-tabs .tab-link::after {
    content: attr(data-short);
    font-size: 0.75rem;
    color: inherit;
  }

  /* Hide the data-short pseudo-element when tab is active on mobile */
  .investors-tabs .tab-link.active::after {
    display: none;
  }

  /* Show the full span text for active tab on mobile */
  .investors-tabs .tab-link.active span {
    display: inline;
  }
}

@media (max-width: 576px) {
  .investors-tabs .tab-link {
    flex: 1 1 100%;
  }
  
  .year-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .year-select {
    width: 100%;
  }
  
  .tab-content .doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .tab-content .doc-title {
    width: 100%;
  }
  
  .tab-content .doc-title span {
    word-break: break-word;
  }
}
