/**
 * GST Updates Section - Scoped Styles
 * DisyTax - Professional Styling
 * Version: 2.0
 */

/* Main Container */
.dt-gst-wrapper {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.dt-gst-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 50px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dt-gst-nav {
  text-align: center;
  margin-bottom: 25px;
}

.dt-gst-nav-link {
  display: inline-block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.dt-gst-nav-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* H1 - Poppins 700 */
.dt-gst-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  margin: 25px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

.dt-gst-intro {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
}

.dt-gst-intro a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.dt-gst-intro a:hover {
  border-bottom-color: #ffd700;
}

/* Featured Image */
.dt-gst-featured-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.dt-gst-featured-img:hover {
  transform: scale(1.02);
}

/* Why Choose Box */
.dt-why-choose {
  background: linear-gradient(135deg, #e0f2f7 0%, #e8f5e9 100%);
  padding: 35px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 6px solid #0056b3;
  box-shadow: 0 8px 30px rgba(0, 86, 179, 0.1);
}

/* H2 - Poppins 700 */
.dt-why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0056b3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dt-why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dt-why-choose-item {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  color: #2c3e50;
}

.dt-why-choose-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #0056b3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
}

/* Monthly Updates Section */
.dt-updates-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.dt-updates-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* H2 - Poppins 700 */
.dt-year-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #e0e0e0;
}

/* Month Section */
.dt-month-section {
  margin-bottom: 50px;
}

/* H3 - Poppins 500 */
.dt-month-header {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.5rem;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-month-header:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.dt-month-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.dt-month-section.collapsed .dt-month-toggle {
  transform: rotate(-90deg);
}

.dt-month-content {
  max-height: 5000px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.dt-month-section.collapsed .dt-month-content {
  max-height: 0;
}

/* Update List */
.dt-update-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dt-update-item {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #0073e6;
  font-size: 1.05rem;
  line-height: 1.8;
  transition: all 0.3s ease;
  position: relative;
}

.dt-update-item:hover {
  background: #e8f4fd;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 115, 230, 0.1);
}

.dt-update-item strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #0056b3;
}

.dt-update-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dt-update-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* WhatsApp CTA Box */
.dt-whatsapp-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  margin-top: 50px;
}

/* H3 - Poppins 500 */
.dt-whatsapp-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.dt-whatsapp-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: white;
  font-size: 1.15rem;
  line-height: 1.8;
}

.dt-whatsapp-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffd700;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.dt-whatsapp-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.dt-update-item {
  animation: fadeInUp 0.6s ease backwards;
}

.dt-update-item:nth-child(1) { animation-delay: 0.1s; }
.dt-update-item:nth-child(2) { animation-delay: 0.15s; }
.dt-update-item:nth-child(3) { animation-delay: 0.2s; }
.dt-update-item:nth-child(4) { animation-delay: 0.25s; }
.dt-update-item:nth-child(5) { animation-delay: 0.3s; }

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .dt-gst-hero {
    padding: 30px 20px;
  }
  
  .dt-gst-main-title {
    font-size: 1.6rem;
  }
  
  .dt-gst-intro {
    font-size: 0.95rem;
  }
  
  .dt-updates-box {
    padding: 20px;
  }
  
  .dt-year-title {
    font-size: 1.5rem;
  }
  
  .dt-month-header {
    font-size: 1.2rem;
    padding: 12px 18px;
  }
  
  .dt-update-item {
    font-size: 0.95rem;
    padding: 15px;
  }
  
  .dt-why-choose {
    padding: 25px;
  }
  
  .dt-why-choose-title {
    font-size: 1.4rem;
  }
  
  .dt-whatsapp-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .dt-gst-main-title {
    font-size: 1.3rem;
  }
  
  .dt-month-header {
    font-size: 1.1rem;
  }
  
  .dt-update-item {
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  .dt-gst-hero {
    background: white;
    color: black;
  }
  
  .dt-gst-main-title,
  .dt-gst-intro,
  .dt-gst-intro a {
    color: black;
  }
  
  .dt-month-header {
    background: white;
    color: black;
    border: 2px solid black;
  }
  
  .dt-whatsapp-cta {
    display: none;
  }
}