/* Styles for index.html */

    /* ===== SERVICES SECTION TITLE ===== */
    .services-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .services-header h2 {
      font-size: 2.2rem;
      color: #0f5132;
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
      padding-bottom: 16px;
    }

    .services-header h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #0f5132, #ffc107);
      border-radius: 2px;
    }

    .services-header p {
      color: #666;
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== ABOUT SECTION ENHANCED ===== */
    #about {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fffe 0%, #e8f5ee 100%);
    }

    #about .about-text h2 {
      font-size: 2rem;
      text-align: right;
      margin-bottom: 16px;
      position: relative;
      padding-bottom: 14px;
    }

    #about .about-text h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #ffc107, #0f5132);
      border-radius: 2px;
    }

    #about .about-text p {
      font-size: 1rem;
      line-height: 1.9;
      color: #555;
      margin-bottom: 16px;
    }

    #about .about-image img {
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(15,81,50,0.15);
    }

    /* ===== WHY US ENHANCED ===== */
    #why-us {
      padding: 80px 0;
      background: #fff;
    }

    #why-us h2 {
      font-size: 2rem;
      color: #0f5132;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 16px;
    }

    #why-us h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #0f5132, #ffc107);
      border-radius: 2px;
    }

    /* ===== CONTACTS SECTION ===== */
    #contacts {
      padding: 80px 0;
      background: linear-gradient(135deg, #0a3c23 0%, #0f5132 100%);
    }

    #contacts h2 {
      color: #fff;
      font-size: 2rem;
      text-align: center;
      margin-bottom: 40px;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .contact-widget {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 30px 24px;
      text-align: center;
      color: #fff;
      backdrop-filter: blur(10px);
      transition: all 0.35s ease;
    }

    .contact-widget:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-6px);
    }

    .contact-widget .widget-icon {
      font-size: 2.5rem;
      margin-bottom: 14px;
      display: block;
    }

    .contact-widget h3 {
      color: #ffc107;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .contact-widget p {
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      margin-bottom: 14px;
    }

    .contact-widget a {
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }

    .contact-widget a:hover {
      color: #ffc107;
    }

    .contact-widget .btn-widget {
      display: inline-block;
      background: #ffc107;
      color: #1a1a1a;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-widget .btn-widget:hover {
      background: #e6a800;
      transform: translateY(-2px);
    }

    /* ===== FOOTER ENHANCED ===== */
    .footer {
      background: linear-gradient(135deg, #071f12 0%, #0a3c23 100%);
      color: rgba(255,255,255,0.85);
      padding: 60px 0 20px;
      margin-top: 0;
    }

    .footer-section h3 {
      color: #ffc107;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .footer-section p {
      color: rgba(255,255,255,0.75);
      margin-bottom: 10px;
      font-size: 0.9rem;
    }

    .footer-section a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: #ffc107;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      color: rgba(255,255,255,0.5);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .contacts-grid { grid-template-columns: 1fr; }
    }
  
    /* ===== LATEST ARTICLES SECTION ===== */
    .latest-articles {
      padding: 80px 0;
      background: #fff;
    }

    .latest-articles .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .latest-articles .section-header h2 {
      font-size: 2.2rem;
      color: #0f5132;
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
      padding-bottom: 16px;
    }

    .latest-articles .section-header h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #0f5132, #ffc107);
      border-radius: 2px;
    }

    .latest-articles .section-header p {
      color: #666;
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .article-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(15,81,50,0.08);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(15,81,50,0.15);
    }

    .article-image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .article-card:hover .article-image img {
      transform: scale(1.08);
    }

    .article-category {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #ffc107;
      color: #1a1a1a;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .article-content {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .article-content h3 {
      font-size: 1.15rem;
      color: #0f5132;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .article-content h3 a {
      color: #0f5132;
      text-decoration: none;
      transition: color 0.3s;
    }

    .article-content h3 a:hover {
      color: #ffc107;
    }

    .article-content p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }

    .read-more {
      color: #0f5132;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.3s;
      display: inline-block;
    }

    .read-more:hover {
      color: #ffc107;
    }

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

    .btn-view-all {
      display: inline-block;
      background: linear-gradient(135deg, #0f5132, #0a3c23);
      color: #fff;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-view-all:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(15,81,50,0.3);
      background: linear-gradient(135deg, #0a3c23, #071f12);
    }

    /* ===== RESPONSIVE FOR ARTICLES ===== */
    @media (max-width: 768px) {
      .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .latest-articles {
        padding: 60px 0;
      }
      .latest-articles .section-header h2 {
        font-size: 1.8rem;
      }
      .article-image {
        height: 180px;
      }
    }

    @media (max-width: 576px) {
      .articles-grid {
        gap: 20px;
      }
      .article-content {
        padding: 20px;
      }
      .article-image {
        height: 160px;
      }
      .latest-articles .section-header h2 {
        font-size: 1.5rem;
      }
    }


    /* ===== ARTICLE CTA BUTTONS ===== */
    .article-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .article-cta-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-article-wa,
    .btn-article-consult {
      flex: 1;
      min-width: 100px;
      padding: 10px 14px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

    .btn-article-wa {
      background: #25d366;
      color: #fff;
    }

    .btn-article-wa:hover {
      background: #1fa857;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    .btn-article-consult {
      background: #0f5132;
      color: #fff;
    }

    .btn-article-consult:hover {
      background: #0a3c23;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(15, 81, 50, 0.3);
    }

    /* ===== TOUCH EFFECTS FOR ARTICLE BUTTONS ===== */
    @media (hover: none) and (pointer: coarse) {
      .btn-article-wa:active {
        background: #1fa857;
        transform: scale(0.98);
      }

      .btn-article-consult:active {
        background: #0a3c23;
        transform: scale(0.98);
      }
    }

    /* ===== RESPONSIVE FOR ARTICLE BUTTONS ===== */
    @media (max-width: 768px) {
      .article-cta-buttons {
        gap: 8px;
      }

      .btn-article-wa,
      .btn-article-consult {
        padding: 9px 12px;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 576px) {
      .article-cta-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .btn-article-wa,
      .btn-article-consult {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.9rem;
      }
    }
